| 410 | } |
| 411 | |
| 412 | static int burrow_tiles_set(lua_State *L) { |
| 413 | color_ostream *out = Lua::GetOutput(L); |
| 414 | if (!out) |
| 415 | out = &Core::getInstance().getConsole(); |
| 416 | DEBUG(status,*out).print("entering burrow_tiles_set\n"); |
| 417 | tiles_set_add_remove(L, true, true); |
| 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | static int burrow_tiles_add(lua_State *L) { |
| 422 | color_ostream *out = Lua::GetOutput(L); |
nothing calls this directly
no test coverage detected