More fixes to incorrectly changed outputs(mainly files)

This commit is contained in:
Lzimann
2017-03-10 13:33:03 -03:00
parent e07556265c
commit 2d59366ae4
13 changed files with 15 additions and 15 deletions
@@ -672,7 +672,7 @@
return 0
if(I.w_class > WEIGHT_CLASS_BULKY)
if(!disable_warning)
to_chat(H, "The [I.name] is too big to attach." )
to_chat(H, "The [I.name] is too big to attach.") //should be src?
return 0
if( istype(I, /obj/item/device/pda) || istype(I, /obj/item/weapon/pen) || is_type_in_list(I, H.wear_suit.allowed) )
return 1
+2 -2
View File
@@ -160,9 +160,9 @@ var/const/VOX_DELAY = 600
if(M.client && !M.ear_deaf && (M.client.prefs.toggles & SOUND_ANNOUNCEMENTS))
var/turf/T = get_turf(M)
if(T.z == z_level)
to_chat(M, voice)
M << voice
else
to_chat(only_listener, voice)
only_listener << voice
return 1
return 0