fix for end sounds

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2046 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
LastBattaWolf@hotmail.com
2011-08-24 18:34:50 +00:00
parent 3cae06c9c3
commit a4c24f073c

View File

@@ -123,14 +123,14 @@
/world/Reboot(var/reason) /world/Reboot(var/reason)
spawn(0) spawn(0)
world << sound(pick('newroundsexy.ogg','apcdestroyed.ogg')) // random end sounds!! - LastyBatsy world << sound(pick('newroundsexy.ogg','apcdestroyed.ogg')) // random end sounds!! - LastyBatsy
if(prob(40)) //if(prob(40))
for(var/mob/M in world) // for(var/mob/M in world)
if(M.client) // if(M.client)
M << sound('newroundsexy.ogg') // M << sound('newroundsexy.ogg')
else //else
for(var/mob/M in world) // for(var/mob/M in world)
if(M.client) // if(M.client)
M << sound('apcdestroyed.ogg') // M << sound('apcdestroyed.ogg')
for(var/client/C) for(var/client/C)
if (config.server) //if you set a server location in config.txt, it sends you there instead of trying to reconnect to the same world address. -- NeoFite if (config.server) //if you set a server location in config.txt, it sends you there instead of trying to reconnect to the same world address. -- NeoFite