Skip to content

Commit

Permalink
Fix missing localize in actionRevive
Browse files Browse the repository at this point in the history
  • Loading branch information
jaj22 committed Feb 11, 2024
1 parent 6540b7c commit f4f8049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion A3A/addons/core/functions/Revive/fn_actionRevive.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (captive _medic) then { _medic setCaptive false }; // medic is will b
if !(alive _cured) exitWith
{
if (_player) then {[_titleStr, format [localize "STR_A3A_fn_revive_actRev_no_dead",name _cured]] call A3A_fnc_customHint;};
if (_inPlayerGroup) then {_medic groupChat format ["STR_A3A_fn_revive_actRev_no_dead",name _cured]};
if (_inPlayerGroup) then {_medic groupChat format [localize "STR_A3A_fn_revive_actRev_no_dead",name _cured]};
false
};
if !([_medic] call A3A_fnc_canFight) exitWith
Expand Down

0 comments on commit f4f8049

Please sign in to comment.