Disable ESC after death

This commit is contained in:
Skaronator
2014-03-22 02:37:15 +01:00
parent 930af421e0
commit 6b0ebbf99d

View File

@@ -20,6 +20,10 @@ if (_dikCode == 0x01) then {
DZE_cancelBuilding = true;
call dayz_EjectPlayer;
};
// Disable ESC after death
if (_dikCode == 0x01 && r_player_dead) then {
_handled = true;
};
// surrender
if (_dikCode in actionKeys "Surrender") then {
@@ -185,4 +189,4 @@ if (_dikCode == 0x39 or (_dikCode in actionKeys "User19")) then {
DZE_5 = true;
};
_handled
_handled