(spectator) unhide/unmute unit on exiting (#5699)

* unhide/unmute unit on exiting

* Update fnc_setSpectator.sqf
This commit is contained in:
Cuel 2017-10-28 18:23:18 +02:00 committed by PabstMirror
parent 4a1653c292
commit c815a9cae8

View File

@ -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