mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
-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
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
src.verbs += /client/proc/cmd_admin_abominize // -- TLE
|
||||
src.verbs += /client/proc/make_cultist // -- TLE
|
||||
src.verbs += /client/proc/check_words // -- Urist
|
||||
src.verbs += /client/proc/colorooc // -- Urist
|
||||
src.verbs += /client/proc/cmd_admin_monkeyize
|
||||
src.verbs += /client/proc/cmd_admin_robotize
|
||||
src.verbs += /client/proc/cmd_admin_add_freeform_ai_law
|
||||
@@ -705,6 +706,12 @@
|
||||
log_admin("[key_name(usr)] has used boom boom boom shake the room")
|
||||
message_admins("[key_name_admin(usr)] has used boom boom boom shake the room", 1)
|
||||
|
||||
/client/proc/colorooc()
|
||||
set category = "Fun"
|
||||
set name = "OOC Text Color"
|
||||
src.ooccolor = input(src, "Please select your OOC colour.", "OOC colour") as color
|
||||
return
|
||||
|
||||
/client/proc/stealth()
|
||||
set category = "Admin"
|
||||
set name = "Stealth Mode"
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
log_admin("[key_name(src)] played sound [S]")
|
||||
message_admins("[key_name_admin(src)] played sound [S]", 1)
|
||||
for(var/mob/M in world)
|
||||
if(M.midis)
|
||||
if(M.client.midis)
|
||||
M << uploaded_sound
|
||||
else
|
||||
if(usr.client.canplaysound)
|
||||
@@ -23,7 +23,7 @@
|
||||
log_admin("[key_name(src)] played sound [S]")
|
||||
message_admins("[key_name_admin(src)] played sound [S]", 1)
|
||||
for(var/mob/M in world)
|
||||
if(M.midis)
|
||||
if(M.client.midis)
|
||||
M << uploaded_sound
|
||||
else
|
||||
usr << "You already used up your jukebox monies this round!"
|
||||
@@ -43,7 +43,7 @@
|
||||
message_admins("[key_name_admin(usr)] has declared Cuban Pete Time!", 1)
|
||||
|
||||
for(var/mob/M in world)
|
||||
if(M.midis)
|
||||
if(M.client.midis)
|
||||
M << 'cubanpetetime.ogg'
|
||||
|
||||
for(var/mob/living/carbon/human/CP in world)
|
||||
|
||||
Reference in New Issue
Block a user