diff --git a/vmf_source/scripts/mods/vmf/modules/core/toggling.lua b/vmf_source/scripts/mods/vmf/modules/core/toggling.lua index 45eb86b..c394e0e 100644 --- a/vmf_source/scripts/mods/vmf/modules/core/toggling.lua +++ b/vmf_source/scripts/mods/vmf/modules/core/toggling.lua @@ -52,11 +52,12 @@ VMFMod.enable = function (self) end end -VMFMod.initialized = function (self) +VMFMod.init_state = function (self) if _DISABLED_MODS_LIST[self:get_name()] then - change_mod_state(self, false, true) + else + change_mod_state(self, true, true) end end