| 48 | } |
| 49 | |
| 50 | DFhackCExport command_result plugin_init(color_ostream &out, vector<PluginCommand> &commands) { |
| 51 | commands.push_back(PluginCommand( |
| 52 | "lair", |
| 53 | "Prevent item scatter when a site is reclaimed or visited.", |
| 54 | lair)); |
| 55 | return CR_OK; |
| 56 | } |
nothing calls this directly
no test coverage detected