mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 02:32:20 +00:00
-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
11 lines
312 B
Plaintext
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 |