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