A3Wasteland / ArmA3_Wasteland.Stratis

A3Wasteland is a survival sandbox mission for Arma 3 where two teams and independent players fight for survival. Built in collaboration between GoT, TPG, KoS, 404Games, and others. –
http://a3wasteland.com/
GNU Affero General Public License v3.0
39 stars 79 forks source link

Fix for Arma 3 1.78 wasteland Error Foreign error: Unknown enum value: "" #97

Closed 1datatec closed 6 years ago

1datatec commented 6 years ago

So 3 things to fix and then it seems to work fine.

  1. server\functions\spawnStoreObject.sqf, line 154 Should change _object = createVehicle [_class, _safePos, [], 0, ""]; to _object = createVehicle [_class, _safePos, [], 0, "NONE"];

  2. addons\parking\pp_actions_functions.sqf, line 88 Should change _terminal = createVehicle ["Land_CampingTable_small_F", ASLtoATL _pos, [], 0, ""]; to _terminal = createVehicle ["Land_CampingTable_small_F", ASLtoATL _pos, [], 0, "NONE"];

  3. persistence\server\world\fn_restoreSavedVehicle.sqf, line 24 Should change private _special = ["","FLY"] select (_isUAV && _flying); to private _special = ["NONE","FLY"] select (_isUAV && _flying);