From a11d73b8f1b3123a612feae416b169b660f5ebd6 Mon Sep 17 00:00:00 2001 From: Steve Zhao Date: Thu, 26 Jun 2025 20:47:00 -0400 Subject: [PATCH] fix settings in mp --- CHANGELOG.md | 8 +++----- addons/interaction/XEH_preInit.sqf | 2 ++ addons/interaction/XEH_preInit_server.sqf | 2 -- addons/main/script_version.hpp | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f952d..fffbd0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,9 @@ -## 0.3.2 - - Added: Dragging horizontally on knob control - ## 0.3.1 - - Fixed: With Detached Cursor setting OFF, interaction cursor did not show - - Added: Settings for cursor shape and color + - Fixed: Addon settings doesn't show in MP ## 0.3.0 + - Added: Settings for cursor shape and color + - Added: Dragging horizontally on knob control - Added: Allow interactions while remote controlling - Changed: Removed ACE Dependency - Changed: Keybinds moved from CBA Keybinds to Arma Modded Keybinds diff --git a/addons/interaction/XEH_preInit.sqf b/addons/interaction/XEH_preInit.sqf index 349cbb1..cd6e57b 100644 --- a/addons/interaction/XEH_preInit.sqf +++ b/addons/interaction/XEH_preInit.sqf @@ -5,4 +5,6 @@ ADDON = false; #include "XEH_PREP.hpp" //PREP_RECOMPILE_END; +call FUNC(preInit); + ADDON = true; diff --git a/addons/interaction/XEH_preInit_server.sqf b/addons/interaction/XEH_preInit_server.sqf index 4307b04..ea99354 100644 --- a/addons/interaction/XEH_preInit_server.sqf +++ b/addons/interaction/XEH_preInit_server.sqf @@ -1,4 +1,2 @@ #include "script_component.hpp" //only executed on server - -call FUNC(preInit); diff --git a/addons/main/script_version.hpp b/addons/main/script_version.hpp index ada1f19..93fdede 100644 --- a/addons/main/script_version.hpp +++ b/addons/main/script_version.hpp @@ -1,4 +1,4 @@ #define MAJOR 0 #define MINOR 3 -#define PATCH 2 +#define PATCH 1 #define BUILD 0