replace getContentPacks with getAllContentPacks in global events emitting
This commit is contained in:
@@ -209,21 +209,21 @@ void scripting::on_world_load(LevelController* controller) {
|
||||
lua::call_nothrow(L, 0, 0);
|
||||
}
|
||||
|
||||
for (auto& pack : scripting::engine->getContentPacks()) {
|
||||
for (auto& pack : scripting::engine->getAllContentPacks()) {
|
||||
lua::emit_event(L, pack.id + ":.worldopen");
|
||||
}
|
||||
}
|
||||
|
||||
void scripting::on_world_tick() {
|
||||
auto L = lua::get_main_state();
|
||||
for (auto& pack : scripting::engine->getContentPacks()) {
|
||||
for (auto& pack : scripting::engine->getAllContentPacks()) {
|
||||
lua::emit_event(L, pack.id + ":.worldtick");
|
||||
}
|
||||
}
|
||||
|
||||
void scripting::on_world_save() {
|
||||
auto L = lua::get_main_state();
|
||||
for (auto& pack : scripting::engine->getContentPacks()) {
|
||||
for (auto& pack : scripting::engine->getAllContentPacks()) {
|
||||
lua::emit_event(L, pack.id + ":.worldsave");
|
||||
}
|
||||
if (lua::getglobal(L, "__vc_on_world_save")) {
|
||||
@@ -233,7 +233,7 @@ void scripting::on_world_save() {
|
||||
|
||||
void scripting::on_world_quit() {
|
||||
auto L = lua::get_main_state();
|
||||
for (auto& pack : scripting::engine->getContentPacks()) {
|
||||
for (auto& pack : scripting::engine->getAllContentPacks()) {
|
||||
lua::emit_event(L, pack.id + ":.worldquit");
|
||||
}
|
||||
if (lua::getglobal(L, "__vc_on_world_quit")) {
|
||||
|
||||
Reference in New Issue
Block a user