| 665 | } |
| 666 | |
| 667 | static int burrow_units_set(lua_State *L) { |
| 668 | color_ostream *out = Lua::GetOutput(L); |
| 669 | if (!out) |
| 670 | out = &Core::getInstance().getConsole(); |
| 671 | DEBUG(status,*out).print("entering burrow_units_set\n"); |
| 672 | units_set_add_remove(L, true, true); |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | static int burrow_units_add(lua_State *L) { |
| 677 | color_ostream *out = Lua::GetOutput(L); |
nothing calls this directly
no test coverage detected