Update EPOCH_npcTraderAdd3.sqf

Corrected spelling of crypto
This commit is contained in:
Grahame 2018-08-16 10:31:42 -04:00 committed by GitHub
parent d14cd07ad8
commit 14653c13cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ if (isClass (_config >> _uiItem)) then {
_cryptoCount = _cryptoCount + _worth;
};
};
ctrlSetText [_CryptoInCtrl, (format["%1 Krypto", _cryptoCount])];
ctrlSetText [_CryptoInCtrl, (format["%1 Crypto", _cryptoCount])];
_cryptoCount = 0;
_sizeOut = lbSize _TraderItemsOutBox;
if (_sizeOut > 0) then {
@ -68,5 +68,5 @@ if (isClass (_config >> _uiItem)) then {
_cryptoCount = _cryptoCount + _worth;
};
};
ctrlSetText [_CryptoOutCtrl, (format["%1 Krypto", _cryptoCount])];
ctrlSetText [_CryptoOutCtrl, (format["%1 Crypto", _cryptoCount])];
};