Do not send purchased vehicle marker arrow over network

Only the player buying the vehicle needs to see the arrow.

Also fixed CfgMagazines error from:
2c4c75c67c (diff-fcf3df9a25b3d05402ab4e4809673194R6)
@icomrade
This commit is contained in:
ebaydayz
2016-08-09 14:52:15 -04:00
parent 1ed78cc085
commit c62e3147c8
12 changed files with 69 additions and 66 deletions

View File

@@ -0,0 +1,12 @@
private ["_object","_sign"];
_object = _this select 0;
_sign = _this select 1;
waitUntil {
uiSleep 1;
!isNull (nearestObject [player,_object])
};
deleteVehicle _sign;
player reveal (nearestObject [player,_object]);