From 35dfd937798d105238db23ea86f90f21be46694b Mon Sep 17 00:00:00 2001 From: BobTheBob <32057864+BobTheBob9@users.noreply.github.com> Date: Sun, 7 Nov 2021 03:53:07 +0000 Subject: code cleanup, xp, postgame and some small changes --- .../mod/scripts/vscripts/_misc_stubs.gnut | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Northstar.CustomServers/mod/scripts/vscripts/_misc_stubs.gnut (limited to 'Northstar.CustomServers/mod/scripts/vscripts/_misc_stubs.gnut') diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_misc_stubs.gnut b/Northstar.CustomServers/mod/scripts/vscripts/_misc_stubs.gnut new file mode 100644 index 000000000..64e089239 --- /dev/null +++ b/Northstar.CustomServers/mod/scripts/vscripts/_misc_stubs.gnut @@ -0,0 +1,22 @@ +// todo figure out where these stub functions should be and move them to those places +global function FW_Border_GlobalInit +global function IsVDUTitan + +void function FW_Border_GlobalInit() +{ + AddSpawnCallbackEditorClass( "func_brush", "func_brush_fw_territory_border", RemoveFWBorder ) +} + +void function RemoveFWBorder( entity border ) +{ + if ( GameModeRemove( border ) ) + return + + if ( !border.HasKey( "gamemode_" + GAMETYPE ) ) + border.Destroy() +} + +bool function IsVDUTitan( entity titan ) +{ + return false +} \ No newline at end of file -- cgit v1.2.3