Skip to content

Commit

Permalink
Merge pull request #3144 from jaj22/fix-missing-actionRevive-localize
Browse files Browse the repository at this point in the history
Fix missing localize in actionRevive
  • Loading branch information
Bob-Murphy authored Feb 11, 2024
2 parents dae0828 + f4f8049 commit 61e1c61
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 61e1c61

Please sign in to comment.