| 608 | } |
| 609 | |
| 610 | static int burrow_tiles_flood_add(lua_State *L) { |
| 611 | color_ostream *out = Lua::GetOutput(L); |
| 612 | if (!out) |
| 613 | out = &Core::getInstance().getConsole(); |
| 614 | DEBUG(status,*out).print("entering burrow_tiles_flood_add\n"); |
| 615 | flood_fill(L, true); |
| 616 | return 0; |
| 617 | } |
| 618 | |
| 619 | static int burrow_tiles_flood_remove(lua_State *L) { |
| 620 | color_ostream *out = Lua::GetOutput(L); |
nothing calls this directly
no test coverage detected