Skip to content

Commit

Permalink
Add mute flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyruz143 committed Oct 28, 2022
1 parent 590e748 commit 2b12013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/ark_admin_tools/functions/fnc_showUI.sqf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ark_admin_tools_fnc_showUI = {
params ["_shown"];
params ["_shown", "_mute"];

showChat _shown;
showHUD _shown;
missionNamespace setVariable ["diwako_dui_main_toggled_off", !_shown];
player setVariable ["acre_sys_core_isDisabled", !_shown, true];
player setVariable ["acre_sys_core_isDisabled", _mute, true];
};

0 comments on commit 2b12013

Please sign in to comment.