From f68f616feaef72f574f6f2f1ef7a8980559ad1c8 Mon Sep 17 00:00:00 2001 From: "DESKTOP-UH65DCE\\MusTanG" Date: Mon, 24 Jul 2017 12:26:14 -0500 Subject: [PATCH] Action change Change selection in array to "" as the current selection is not built into these non-epoch objects. --- .../compile/epoch_server/EPOCH_server_createTeleport.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/epoch_server/compile/epoch_server/EPOCH_server_createTeleport.sqf b/Sources/epoch_server/compile/epoch_server/EPOCH_server_createTeleport.sqf index c3cdb705..37b17526 100644 --- a/Sources/epoch_server/compile/epoch_server/EPOCH_server_createTeleport.sqf +++ b/Sources/epoch_server/compile/epoch_server/EPOCH_server_createTeleport.sqf @@ -144,7 +144,7 @@ _config = configFile >> "CfgEpoch"; _veh1 = createVehicle[_enterClass, _pos1, [], 0, "CAN_COLLIDE"]; // force addaction on any other objects that are not setup properly if !(_veh1 isKindOf "Transport_EPOCH") then { - [_veh1, [(localize "STR_EPOCH_Teleport"), {(_this select 0) call EPOCH_EnterBuilding}, [], 1, true, true, "Action", "alive _target", 3, false, "Epoch_Action_Point"]] remoteExec ["addAction", -2, _veh1, true]; + [_veh1, [(localize "STR_EPOCH_Teleport"), {(_this select 0) call EPOCH_EnterBuilding}, [], 1, true, true, "Action", "alive _target", 3, false, ""]] remoteExec ["addAction", -2, _veh1, true]; }; _veh1 enableSimulationGlobal false; _veh1 allowDamage false; @@ -156,7 +156,7 @@ _config = configFile >> "CfgEpoch"; _veh2 = createVehicle[_exitClass, _pos, [], 0, "CAN_COLLIDE"]; // force addaction on any other objects that are not setup properly if !(_veh2 isKindOf "Transport_EPOCH") then { - [_veh2, [(localize "STR_EPOCH_Teleport"), {(_this select 0) call EPOCH_EnterBuilding}, [], 1, true, true, "Action", "alive _target", 3, false, "Epoch_Action_Point"]] remoteExec ["addAction", -2, _veh1, true]; + [_veh2, [(localize "STR_EPOCH_Teleport"), {(_this select 0) call EPOCH_EnterBuilding}, [], 1, true, true, "Action", "alive _target", 3, false, ""]] remoteExec ["addAction", -2, _veh1, true]; }; _veh2 enableSimulationGlobal false; _veh2 allowDamage false;