| 428 | } |
| 429 | |
| 430 | static int burrow_tiles_remove(lua_State *L) { |
| 431 | color_ostream *out = Lua::GetOutput(L); |
| 432 | if (!out) |
| 433 | out = &Core::getInstance().getConsole(); |
| 434 | DEBUG(status,*out).print("entering burrow_tiles_remove\n"); |
| 435 | tiles_set_add_remove(L, false, false); |
| 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | static void box_fill(lua_State *L, bool enable) { |
| 440 | df::burrow *burrow = get_burrow(L, 1); |
nothing calls this directly
no test coverage detected