+ added allowed objects list for mpkilled and publishing objects
+ added missing vaultstorage to gear sync
+ fixed broken maxLocalZombies override via mission init.sqf
This commit is contained in:
vbawol
2013-02-22 09:01:35 -06:00
parent 0aaf2438cb
commit f5c738b74d
5 changed files with 10 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
private ["_objects"];
_objects = nearestObjects [getPosATL player, ["Car", "Helicopter", "Motorcycle", "Ship", "TentStorage"], 10];
_objects = nearestObjects [getPosATL player, ["Car", "Helicopter", "Motorcycle", "Ship", "TentStorage","VaultStorage"], 10];
{
["dayzUpdateVehicle",[_x,"gear"]] call callRpcProcedure;
} foreach _objects;