Files
Paradise/code/game/verbs/sound.dm
uporotiy d840398dc9 -Fixed TK through cameras.
-Fixed rune 4 not counting the cultist in the middle. 
-Expanded the explanation of a cultist objective.
-Moved the "midis" setting to client, so it carries over when you ghost/robot/alien/etc.
-Little extra something for Host level admins.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@374 316c924e-a436-60f5-8080-3fe189b3f50e
2010-11-06 12:35:24 +00:00

11 lines
312 B
Plaintext

/mob/verb/togglemidis()
set category = "Special Verbs"
set name = "Toggle Midis"
if(usr.client.midis)
usr.client.midis=0
usr << "You will now stop receiving any sounds uploaded by admins."
else
usr.client.midis=1
usr << "You will now start receiving any sounds uploaded by admins."
return