Lua entrypoint for unhideFlood_internal
| 458 | |
| 459 | // Lua entrypoint for unhideFlood_internal |
| 460 | static void unhideFlood(df::coord pos) { |
| 461 | // no environment or bounds checking needed. if anything is invalid, |
| 462 | // unhideFlood_internal will just exit immeditately |
| 463 | unhideFlood_internal(pos); |
| 464 | } |
| 465 | |
| 466 | command_result revflood(color_ostream &out, vector<string> & params) { |
| 467 | for (auto & param : params) { |
nothing calls this directly
no test coverage detected