Skip to content

Commit

Permalink
Fixed a compiling error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Abi79 committed Jun 9, 2012
1 parent e93d777 commit 0a51b42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/new_player/new_player.dm
Expand Up @@ -111,8 +111,8 @@

if(alert(src,"Are you sure you wish to observe? You will not be able to play this round!","Player Setup","Yes","No") == "Yes")
var/mob/dead/observer/observer = new()
if(isnull(observer))
CRASH("An observer mob could not be created. ( null after var/mob/dead/observer/observer = new() )
if(isnull(observer))
CRASH("An observer mob could not be created. ( null after var/mob/dead/observer/observer = new() )")

spawning = 1
src << sound(null, repeat = 0, wait = 0, volume = 85, channel = 1) // MAD JAMS cant last forever yo
Expand Down

0 comments on commit 0a51b42

Please sign in to comment.