mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 22:17:32 +01:00
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@305 316c924e-a436-60f5-8080-3fe189b3f50e
11 lines
291 B
Plaintext
11 lines
291 B
Plaintext
/mob/verb/togglemidis()
|
|
set category = "Special Verbs"
|
|
set name = "Toggle Midis"
|
|
|
|
if(usr.midis)
|
|
usr.midis=0
|
|
usr << "You will now stop receiving any sounds uploaded by admins."
|
|
else
|
|
usr.midis=1
|
|
usr << "You will now start receiving any sounds uploaded by admins."
|
|
return |