Fix remaining issues and sound shit

This commit is contained in:
Tigercat2000
2016-04-05 16:26:11 -07:00
parent c72cc9606e
commit bb5e3bca63
27 changed files with 65 additions and 69 deletions
+6 -6
View File
@@ -17,7 +17,7 @@ var/list/sounds_cache = list()
message_admins("[key_name_admin(src)] played sound [S]", 1)
for(var/mob/M in player_list)
if(M.client.prefs.sound & SOUND_MIDI)
to_chat(M, uploaded_sound)
M << uploaded_sound
feedback_add_details("admin_verb","PGS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
@@ -86,11 +86,11 @@ var/list/sounds_cache = list()
for(var/mob/M in world)
if(M.client)
if(M.client.midis)
to_chat(M, 'cubanpetetime.ogg')
M << 'cubanpetetime.ogg'
for(var/mob/living/carbon/human/CP in world)
if(CP.real_name=="Cuban Pete" && CP.key!="Rosham")
to_chat(CP, "Your body can't contain the rhumba beat")
C << "Your body can't contain the rhumba beat"
CP.gib()
@@ -102,7 +102,7 @@ var/list/sounds_cache = list()
for(var/mob/M in world)
if(M.client)
if(M.client.midis)
to_chat(M, 'bananaphone.ogg')
M << 'bananaphone.ogg'
client/proc/space_asshole()
@@ -113,7 +113,7 @@ client/proc/space_asshole()
for(var/mob/M in world)
if(M.client)
if(M.client.midis)
to_chat(M, 'sound/music/space_asshole.ogg')
M << 'sound/music/space_asshole.ogg'
client/proc/honk_theme()
@@ -124,4 +124,4 @@ client/proc/honk_theme()
for(var/mob/M in world)
if(M.client)
if(M.client.midis)
to_chat(M, 'honk_theme.ogg')*/
M << 'honk_theme.ogg'*/