aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-07-12 14:51:43 +0100
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-07-12 14:51:43 +0100
commitba41749cc6a6693f11a7f1c7535ff758a461a424 (patch)
tree945786de1feff62180ea7c451c09482a3af823ac /Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut
parent07b7eafd5c1845c70510b695446c23973fed1d4d (diff)
downloadNorthstarMods-ba41749cc6a6693f11a7f1c7535ff758a461a424.tar.gz
NorthstarMods-ba41749cc6a6693f11a7f1c7535ff758a461a424.zip
add hardpoint, infection changes, fra changes
Diffstat (limited to 'Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut')
-rw-r--r--Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut7
1 files changed, 7 insertions, 0 deletions
diff --git a/Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut b/Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut
index 8d803da1d..1b4e5dbd9 100644
--- a/Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut
+++ b/Northstar.CustomServers/scripts/vscripts/lobby/_private_lobby.gnut
@@ -17,6 +17,7 @@ void function PrivateLobby_Init()
AddClientCommandCallback( "PrivateMatchSetMode", ClientCommandCallback_PrivateMatchSetMode )
AddClientCommandCallback( "SetCustomMap", ClientCommandCallback_SetCustomMap )
AddClientCommandCallback( "PrivateMatchSwitchTeams", ClientCommandCallback_PrivateMatchSwitchTeams )
+ AddClientCommandCallback( "ResetMatchSettingsToDefault", ClientCommandCallback_ResetMatchSettingsToDefault )
}
bool function ClientCommandCallback_PrivateMatchLaunch( entity player, array<string> args )
@@ -157,4 +158,10 @@ void function RefreshPlayerTeams()
lastSetMilitia = !lastSetMilitia
}
}
+}
+
+bool function ClientCommandCallback_ResetMatchSettingsToDefault( entity player, array<string> args )
+{
+ ClearPlaylistVarOverrides()
+ return true
} \ No newline at end of file