aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball_intro.gnut
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball_intro.gnut')
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball_intro.gnut13
1 files changed, 0 insertions, 13 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball_intro.gnut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball_intro.gnut
index 367cafc22..860946938 100644
--- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball_intro.gnut
+++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball_intro.gnut
@@ -8,8 +8,6 @@ struct {
table< int, Point > buddySpawns
entity militiaBuddy
entity imcBuddy
-
- table<entity, bool> playersHoldingJump
} file
void function GamemodeFastballIntroSetup()
@@ -38,7 +36,6 @@ void function OnPrematchStart()
ClassicMP_OnIntroStarted()
file.introStartTime = Time()
- file.playersHoldingJump = {} // clear it
Point militiaBuddySpawn
Point imcBuddySpawn
@@ -198,14 +195,4 @@ void function FastballPlayer( entity player )
player.SetVelocity( throwVel )
TryGameModeAnnouncement( player )
-}
-
-void function PlayerHoldingJumpInIntro( entity player )
-{
- file.playersHoldingJump[ player ] <- true
-}
-
-void function PlayerNoLongerHoldingJumpInIntro( entity player )
-{
- file.playersHoldingJump[ player ] <- false
} \ No newline at end of file