remove needless tolower from mortarinit

This commit is contained in:
SzwedzikPL 2016-03-18 17:26:37 +01:00
parent e8b26a7a14
commit 8555f00889

View File

@ -31,7 +31,7 @@ if (count magazines _mortar > 0) then {
private _currentWeapon = _mortar weaponsTurret [0] select 0;
private _newWeapon = "";
if (tolower _currentWeapon == "mortar_82mm") then {
if (_currentWeapon == "mortar_82mm") then {
_newWeapon = "ace_mortar_82mm";
} else {
_newWeapon = getText (configFile >> "CfgWeapons" >> _currentWeapon >> QGVAR(replaceWith));