Fix gem sell currency typo

@icomrade Correct me if I'm wrong, but it looks like this was a copy paste typo from https://github.com/EpochModTeam/DayZ-Epoch/blob/master/SQF/dayz_code/actions/AdvancedTrading/functions/z_at_calcBuyableList.sqf#L57

in 83694a4
This commit is contained in:
ebayShopper
2017-10-25 14:12:01 -04:00
committed by GitHub
parent 64b5659bbd
commit 97a30adc3b

View File

@@ -102,7 +102,7 @@ _processGear = {
_sellCurrency = _sell select 1;
_part = (configFile >> "CfgMagazines" >> _sellCurrency);
_worth = getNumber(_part >> "worth");
if (_worth == 0) then { _worth = DZE_GemWorthList select (DZE_GemList find _buyCurrency); };
if (_worth == 0) then { _worth = DZE_GemWorthList select (DZE_GemList find _sellCurrency); };
} else {
_buyCurrency = CurrencyName;
_sellCurrency = CurrencyName;