Skip to content

Commit

Permalink
bomberman arenas can now be called even after the round has ended (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
nervere authored Nov 4, 2022
1 parent 2e95d67 commit cde91f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/dead/observer/verbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@

/mob/dead/observer/verb/find_arena()
set category = "Ghost"
set name = "Search For Arenas"
set name = "Find Arenas"
set desc = "Try to find an Arena to polish your robust bomb placement skills.."

if(!arenas.len)
Expand Down Expand Up @@ -485,7 +485,7 @@
set category = "Ghost"
set desc = "Create a bomberman arena for other observers and dead players."

if (ticker && ticker.current_state != GAME_STATE_PLAYING)
if (ticker && ticker.current_state < GAME_STATE_PLAYING)
to_chat(src, "<span class ='notice'>You can't use this verb before the game has started.</span>")
return

Expand Down

0 comments on commit cde91f8

Please sign in to comment.