| 244 | } |
| 245 | |
| 246 | DFhackCExport command_result plugin_save_site_data (color_ostream &out) { |
| 247 | store_zone_assignments(last_known_assignments_bedroom, "bedroom"); |
| 248 | store_zone_assignments(last_known_assignments_office, "office"); |
| 249 | store_zone_assignments(last_known_assignments_dining, "dining"); |
| 250 | store_zone_assignments(last_known_assignments_tomb, "tomb"); |
| 251 | store_associations(pending_reassignment, "pending"); |
| 252 | store_associations(reserved_zones, "reserved"); |
| 253 | store_noble_map(noble_zones, "noble"); |
| 254 | |
| 255 | return CR_OK; |
| 256 | } |
| 257 | |
| 258 | DFhackCExport command_result plugin_onupdate(color_ostream &out) { |
| 259 | if (!Core::getInstance().isMapLoaded() || !World::isFortressMode()) |
nothing calls this directly
no test coverage detected