| 1116 | } |
| 1117 | |
| 1118 | void PluginManager::doLoadWorldData(color_ostream &out) |
| 1119 | { |
| 1120 | for (auto it = begin(); it != end(); ++it) |
| 1121 | { |
| 1122 | command_result cr = it->second->load_world_data(out); |
| 1123 | |
| 1124 | if (cr != CR_OK && cr != CR_NOT_IMPLEMENTED) |
| 1125 | out.printerr("Plugin {} has failed to load saved world data.\n", it->first); |
| 1126 | } |
| 1127 | } |
| 1128 | |
| 1129 | void PluginManager::doLoadSiteData(color_ostream &out) |
| 1130 | { |
no test coverage detected