Skip to content

Commit 61e1c61

Browse files
authored
Merge pull request #3144 from jaj22/fix-missing-actionRevive-localize
Fix missing localize in actionRevive
2 parents dae0828 + f4f8049 commit 61e1c61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

A3A/addons/core/functions/Revive/fn_actionRevive.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (captive _medic) then { _medic setCaptive false }; // medic is will b
99
if !(alive _cured) exitWith
1010
{
1111
if (_player) then {[_titleStr, format [localize "STR_A3A_fn_revive_actRev_no_dead",name _cured]] call A3A_fnc_customHint;};
12-
if (_inPlayerGroup) then {_medic groupChat format ["STR_A3A_fn_revive_actRev_no_dead",name _cured]};
12+
if (_inPlayerGroup) then {_medic groupChat format [localize "STR_A3A_fn_revive_actRev_no_dead",name _cured]};
1313
false
1414
};
1515
if !([_medic] call A3A_fnc_canFight) exitWith

0 commit comments

Comments
 (0)