diff --git a/code/game/cellautomata.dm b/code/game/cellautomata.dm index 4113498c71..cf86f4a706 100644 --- a/code/game/cellautomata.dm +++ b/code/game/cellautomata.dm @@ -123,14 +123,14 @@ /world/Reboot(var/reason) spawn(0) world << sound(pick('newroundsexy.ogg','apcdestroyed.ogg')) // random end sounds!! - LastyBatsy - if(prob(40)) - for(var/mob/M in world) - if(M.client) - M << sound('newroundsexy.ogg') - else - for(var/mob/M in world) - if(M.client) - M << sound('apcdestroyed.ogg') + //if(prob(40)) + // for(var/mob/M in world) + // if(M.client) + // M << sound('newroundsexy.ogg') + //else + // for(var/mob/M in world) + // if(M.client) + // M << sound('apcdestroyed.ogg') 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