aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers
diff options
context:
space:
mode:
authorDBmaoha <56738369+DBmaoha@users.noreply.github.com>2022-09-25 07:48:07 +0800
committerGitHub <noreply@github.com>2022-09-25 01:48:07 +0200
commit7f819ca53f7dea47e7d51f43329a911d4327cecf (patch)
tree185e8d97413116acced698975da4ea1b5c781e1d /Northstar.CustomServers
parentecd37edc3f833526518cf6a6abb2bd128fd0a51c (diff)
downloadNorthstarMods-7f819ca53f7dea47e7d51f43329a911d4327cecf.tar.gz
NorthstarMods-7f819ca53f7dea47e7d51f43329a911d4327cecf.zip
Refuse noclipping while player is setparented (#487)
* Update _northstar_cheatcommands.nut * Cleaner Check * Apply suggestions
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut5
1 files changed, 5 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut b/Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut
index c79265ac1..af3dfea56 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut
@@ -14,6 +14,11 @@ bool function ClientCommandCallbackToggleNoclip( entity player, array<string> ar
{
if ( !GetConVarBool( "sv_cheats" ) )
return true
+ if( player.GetParent() ) // change movetype while setparented will crash the server
+ {
+ print( player + " failed noclipping because the entity is parented" )
+ return true
+ }
print( player + " TOGGLED NOCLIP" )