Fix trader menu server RPT log partially localized on client

This commit is contained in:
ebaydayz
2017-01-11 16:12:17 -05:00
parent f25f5e96a6
commit 0d2f91f3aa
2 changed files with 6 additions and 5 deletions

View File

@@ -8,9 +8,9 @@ _Z_logTrade = {
_buyOrSell = _this select 2;
_price = _this select 3;
_container = switch (Z_SellingFrom) do {
case 0 : {localize "STR_EPOCH_TRADE_BACKPACK"};
case 1 : {localize "STR_EPOCH_TRADE_VEHICLE"};
case 2 : {localize "STR_UI_GEAR"};
case 0 : {"backpack"};
case 1 : {"vehicle"};
case 2 : {"gear"};
};
_price = if (Z_singleCurrency) then {format ["%1 %2",[_price] call BIS_fnc_numberText,CurrencyName]} else {[_price,true] call Z_calcCurrency};