()
| 977 | } |
| 978 | |
| 979 | func LoadDataFiles() { |
| 980 | |
| 981 | if len(roomManager.zones) > 0 { |
| 982 | mudlog.Info("rooms.LoadDataFiles()", "msg", "skipping reload of room files, rooms shouldn't be hot reloaded from flatfiles.") |
| 983 | return |
| 984 | } |
| 985 | |
| 986 | if err := loadAllRoomZones(); err != nil { |
| 987 | panic(err) |
| 988 | } |
| 989 | |
| 990 | } |
no test coverage detected