mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
(spectator) unhide/unmute unit on exiting (#5699)
* unhide/unmute unit on exiting * Update fnc_setSpectator.sqf
This commit is contained in:
parent
4a1653c292
commit
c815a9cae8
@ -110,8 +110,13 @@ if (alive player) then {
|
||||
[player, _hidden, QGVAR(isSet), side group player] call EFUNC(common,switchToGroupSide);
|
||||
|
||||
// Ghosts can't talk
|
||||
[player, QGVAR(isSet)] call EFUNC(common,hideUnit);
|
||||
[player, QGVAR(isSet)] call EFUNC(common,muteUnit);
|
||||
if (_hidden) then {
|
||||
[player, QGVAR(isSet)] call EFUNC(common,hideUnit);
|
||||
[player, QGVAR(isSet)] call EFUNC(common,muteUnit);
|
||||
} else {
|
||||
[player, QGVAR(isSet)] call EFUNC(common,unhideUnit);
|
||||
[player, QGVAR(isSet)] call EFUNC(common,unmuteUnit);
|
||||
};
|
||||
};
|
||||
|
||||
// Reset interruptions
|
||||
|
Loading…
x
Reference in New Issue
Block a user