From 3a5fc91329805d4a087e0e817e2b577733c93f36 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Sun, 17 Jul 2016 16:00:12 -0400 Subject: [PATCH] Fix missing string typo My mistake from https://github.com/EpochModTeam/DayZ-Epoch/commit/77519144286851d0c2013cdacdc9cf64e5319618 --- SQF/dayz_code/actions/object_upgradeStorage.sqf | 2 +- SQF/dayz_code/actions/player_breakin.sqf | 2 +- SQF/dayz_code/compile/fn_damageHandler.sqf | 1 + SQF/dayz_code/compile/vehicle_getOut.sqf | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/actions/object_upgradeStorage.sqf b/SQF/dayz_code/actions/object_upgradeStorage.sqf index e3abf8473..8861c60c7 100644 --- a/SQF/dayz_code/actions/object_upgradeStorage.sqf +++ b/SQF/dayz_code/actions/object_upgradeStorage.sqf @@ -194,6 +194,6 @@ if ((_startUpgrade) AND (isClass(_upgradeConfig))) then { localize "str_upgradeDone" call dayz_rollingMessages; /* } else { - "Object has no upgrade option." call dayz_rollingMessages; + localize "str_upgradeNoOption" call dayz_rollingMessages; */ }; \ No newline at end of file diff --git a/SQF/dayz_code/actions/player_breakin.sqf b/SQF/dayz_code/actions/player_breakin.sqf index 650493b4a..7d657f5ae 100644 --- a/SQF/dayz_code/actions/player_breakin.sqf +++ b/SQF/dayz_code/actions/player_breakin.sqf @@ -123,7 +123,7 @@ while {_isOk} do { _proceed = true; }; - format [localize "STR_EPOCH_BREAKIN", _counter,_limit] call dayz_rollingMessages; + format [localize "STR_BLD_BREAKIN", _counter,_limit] call dayz_rollingMessages; uiSleep 0.03; }; //Tool issues diff --git a/SQF/dayz_code/compile/fn_damageHandler.sqf b/SQF/dayz_code/compile/fn_damageHandler.sqf index b86f96068..a64b4fd79 100644 --- a/SQF/dayz_code/compile/fn_damageHandler.sqf +++ b/SQF/dayz_code/compile/fn_damageHandler.sqf @@ -369,6 +369,7 @@ if (_type == 1) then { }; }; }; + if (_type == 2) then { /* HIGH CALIBRE diff --git a/SQF/dayz_code/compile/vehicle_getOut.sqf b/SQF/dayz_code/compile/vehicle_getOut.sqf index af93fb585..52f0ed293 100644 --- a/SQF/dayz_code/compile/vehicle_getOut.sqf +++ b/SQF/dayz_code/compile/vehicle_getOut.sqf @@ -29,4 +29,4 @@ if (_unit == player) then { }; }; -diag_log format["%1 - %2 - %3",_vehicle,_position,_unit]; +diag_log format["%1 - %2 - %3",_vehicle,_position,_unit]; \ No newline at end of file