diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 29da9652a0..2d0a612f78 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -85,6 +85,7 @@ src.verbs += /client/proc/object_talk // -- TLE src.verbs += /client/proc/play_sound src.verbs += /client/proc/cuban_pete // -- Urist + src.verbs += /client/proc/space_asshole // --Agouri :3 src.verbs += /client/proc/sendmob src.verbs += /client/proc/stealthadmin src.verbs += /client/proc/ticklag @@ -180,6 +181,7 @@ src.verbs += /client/proc/modifytemperature src.verbs += /client/proc/play_sound src.verbs += /client/proc/cuban_pete // -- Urist + src.verbs += /client/proc/space_asshole // -- Agouri :3 src.verbs += /client/proc/sendmob src.verbs += /client/proc/stealthadmin src.verbs += /client/proc/ticklag diff --git a/code/modules/admin/verbs/playsound.dm b/code/modules/admin/verbs/playsound.dm index e398d90a4f..e63d0b4560 100644 --- a/code/modules/admin/verbs/playsound.dm +++ b/code/modules/admin/verbs/playsound.dm @@ -54,6 +54,23 @@ CP << "Your body can't contain the rhumba beat" CP.gib(1) + + + + +client/proc/space_asshole() + set category = "Fun" + set name = "Space Asshole" + + message_admins("[key_name_admin(usr)] has played the Space Asshole Hymn.", 1) + + for(var/mob/M in world) + if(M.client) + if(M.client.midis) + M << 'space_asshole.ogg' + + + /*if(Debug2) if(!src.authenticated || !src.holder) src << "Only administrators may use this command." diff --git a/sound/ambience/space_asshole.ogg b/sound/ambience/space_asshole.ogg new file mode 100644 index 0000000000..6bfd9e75e9 Binary files /dev/null and b/sound/ambience/space_asshole.ogg differ