| 617 | } |
| 618 | |
| 619 | static int burrow_tiles_flood_remove(lua_State *L) { |
| 620 | color_ostream *out = Lua::GetOutput(L); |
| 621 | if (!out) |
| 622 | out = &Core::getInstance().getConsole(); |
| 623 | DEBUG(status,*out).print("entering burrow_tiles_flood_remove\n"); |
| 624 | flood_fill(L, false); |
| 625 | return 0; |
| 626 | } |
| 627 | |
| 628 | static int burrow_units_clear(lua_State *L) { |
| 629 | color_ostream *out = Lua::GetOutput(L); |
nothing calls this directly
no test coverage detected