This commit is contained in:
Christian 2017-12-13 18:39:43 +01:00
parent a40ba42bf2
commit c9be439195
2 changed files with 4 additions and 1 deletions

View File

@ -13,8 +13,10 @@ BOOL
*/
params ["_vehicleclass"];
if ((typeName _vehicleclass) != "STRING") exitWith {};
private _isUAV = false;
if( getNumber(configFile >> "CfgVehicles" >> _vehicleclass >> "isUav") == 1 && (typeName _vehicleclass == "STRING") ) then {
if((getNumber(configFile >> "CfgVehicles" >> _vehicleclass >> "isUav")) == 1) then {
_isUAV = true;
};

View File

@ -172,6 +172,7 @@ class Missions
* Tweaked: Some small tweaks for the Lythium basefile.
* Fixed: There was a string key twice in the stringtable.
* Fixed: Lythium basefile was missing mission name and description in the lobby.
* Fixed: Issue with building premade squads.
### 0.962 (10th December 2017)
* Added: ACE carry interaction for resource crates. Thanks to [veteran29](https://github.com/veteran29)