mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-20 10:26:28 +03:00
Prevent issues caused by respawn_west marker being moved
Vanilla commit:
39bcedb4b6
This commit is contained in:
@@ -5,7 +5,7 @@ _showText = _this select 1;
|
||||
_enterORleave = _this select 2;
|
||||
|
||||
// Do not show cutText when player changes clothes in trader area
|
||||
if ((dayz_lastClothesChange + 3 > diag_tickTime) or (player distance getMarkerPos "respawn_west" < 15)) then {
|
||||
if ((dayz_lastClothesChange + 3 > diag_tickTime) or (player distance respawn_west_original < 100)) then {
|
||||
_showText = false;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user