Remove redundant player check. This is performed elsewhere.

This commit is contained in:
worldwidesorrow
2019-12-11 19:17:58 -06:00
committed by GitHub
parent f5a15bf9ab
commit 5c7a5332cf

View File

@@ -6,7 +6,6 @@ _unit = _this select 0;
_medic = _this select 1;
_isSepsis = _this select 2;
if (_unit == player) then {
r_player_injured = false;
r_player_handler = false;
@@ -33,4 +32,3 @@ if (_unit == player) then {
_msg = if (_isSepsis) then {"str_actions_medical_sepsisbandage_received"} else {"str_actions_medical_bandage_received"};
format [localize _msg,(name _medic)] call dayz_rollingMessages;
};
};