From abf690fc11c41be2aa7d74c96c79c74dfe96eabb Mon Sep 17 00:00:00 2001 From: vbawol Date: Sun, 18 Dec 2016 13:21:42 -0600 Subject: [PATCH] fix typo on helper scripts --- Sources/epoch_server/init/server_securityfunctions.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/epoch_server/init/server_securityfunctions.sqf b/Sources/epoch_server/init/server_securityfunctions.sqf index 578ecb3e..e9bb4d05 100644 --- a/Sources/epoch_server/init/server_securityfunctions.sqf +++ b/Sources/epoch_server/init/server_securityfunctions.sqf @@ -258,7 +258,7 @@ EPOCH_server_disconnect = compileFinal(" "); EPOCH_server_movePlayer = compileFinal(" -params [['_playerObj',objNull,[_playerObj]],'_pos']; +params [['_playerObj',objNull,[objNull]],['_pos',[],[[]]]]; if !(isNull _playerObj) then { "+_skn_antiTeleportPVC+" = true; (owner _playerObj) publicVariableClient '"+_skn_antiTeleportPVC+"'; @@ -271,7 +271,7 @@ if !(isNull _playerObj) then { "); EPOCH_server_teleportCheck = compileFinal(" -params [['_playerObj',objNull,[_playerObj]],'_allow']; +params [['_playerObj',objNull,[objNull]],'_allow']; if !(isNull _playerObj) then { "+_skn_antiTeleportPVC+" = _allow; (owner _playerObj) publicVariableClient '"+_skn_antiTeleportPVC+"';