replace getContentPacks with getAllContentPacks in global events emitting

This commit is contained in:
MihailRis
2024-11-27 12:12:20 +03:00
parent fb0f4bff52
commit 32ba027fac
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -42,7 +42,7 @@ void scripting::on_frontend_init(Hud* hud, WorldRenderer* renderer) {
lua::call_nothrow(L, 0, 0);
}
for (auto& pack : engine->getContentPacks()) {
for (auto& pack : engine->getAllContentPacks()) {
lua::emit_event(
lua::get_main_state(),
pack.id + ":.hudopen",
@@ -54,7 +54,7 @@ void scripting::on_frontend_init(Hud* hud, WorldRenderer* renderer) {
}
void scripting::on_frontend_render() {
for (auto& pack : engine->getContentPacks()) {
for (auto& pack : engine->getAllContentPacks()) {
lua::emit_event(
lua::get_main_state(),
pack.id + ":.hudrender",
@@ -64,7 +64,7 @@ void scripting::on_frontend_render() {
}
void scripting::on_frontend_close() {
for (auto& pack : engine->getContentPacks()) {
for (auto& pack : engine->getAllContentPacks()) {
lua::emit_event(
lua::get_main_state(),
pack.id + ":.hudclose",