Skip to content

Commit

Permalink
Adjust game state permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdnk committed Jul 26, 2022
1 parent 1031b5b commit d48ed0a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripting/get5/pausing.sp
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
public bool PauseableGameState() {
return (g_GameState == Get5State_KnifeRound || g_GameState == Get5State_WaitingForKnifeRoundDecision || g_GameState == Get5State_Live);
return (g_GameState == Get5State_KnifeRound ||
g_GameState == Get5State_WaitingForKnifeRoundDecision ||
g_GameState == Get5State_Live ||
g_GameState == Get5State_GoingLive);
}

public void PauseGame(Get5Team team, Get5PauseType type) {
Expand Down

0 comments on commit d48ed0a

Please sign in to comment.