Fix world, separate out data_buckets.

This commit is contained in:
KimLS
2025-12-07 17:13:01 -08:00
parent 6027c56d9e
commit 32e04ea74c
8 changed files with 62 additions and 70 deletions
+2 -1
View File
@@ -434,7 +434,6 @@ LuaParser::LuaParser() {
ZoneArgumentDispatch[EVENT_TIMER_RESUME] = handle_zone_timer_pause_resume_start;
ZoneArgumentDispatch[EVENT_TIMER_START] = handle_zone_timer_pause_resume_start;
ZoneArgumentDispatch[EVENT_TIMER_STOP] = handle_zone_timer_stop;
#endif
L = nullptr;
}
@@ -2295,3 +2294,5 @@ void LuaParser::LoadZoneScript(std::string filename) {
void LuaParser::LoadGlobalZoneScript(std::string filename) {
LoadScript(filename, "global_zone");
}
#endif