From a81d8fde26b08d16b647bba8bb589578075d7352 Mon Sep 17 00:00:00 2001 From: Brobgonal Second <158646138+Brob2nd@users.noreply.github.com> Date: Tue, 22 Oct 2024 01:49:44 -0500 Subject: [PATCH] Fixed a bug with the [CS] VL-Tone & Cjes Luigi mod (#383) Fixed a bug with the [CS] VL-Tone & Cjes Luigi mod when enabled without the Character Select mod enabled would send a wrong error message would say 'Extra Characters requires Character Select to be enabled.' instead of '[CS] VL-Tone & Cjes Luigi requires Character Select to be enabled.' --- mods/char-select-cjes-and-vl/a-constants.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/char-select-cjes-and-vl/a-constants.lua b/mods/char-select-cjes-and-vl/a-constants.lua index 2c2e5219f..84a3a77c9 100644 --- a/mods/char-select-cjes-and-vl/a-constants.lua +++ b/mods/char-select-cjes-and-vl/a-constants.lua @@ -4,7 +4,7 @@ if not _G.charSelectExists then if not first then first = true play_sound(SOUND_MENU_CAMERA_BUZZ, gGlobalSoundSource) - djui_chat_message_create("\\#ffffa0\\Extra Characters requires Character Select to be enabled.\nPlease rehost with it enabled.") + djui_chat_message_create("\\#ffffa0\\[CS] VL-Tone & Cjes Luigi requires Character Select to be enabled.\nPlease rehost with it enabled.") end end) return @@ -13,4 +13,4 @@ end MOD_VERSION = "v4.1" E_MODEL_VL = smlua_model_util_get_id("vl_geo") -E_MODEL_CJES = smlua_model_util_get_id("cjes_geo") \ No newline at end of file +E_MODEL_CJES = smlua_model_util_get_id("cjes_geo")