Removes world output and commented code.

This commit is contained in:
Neerti
2016-02-04 10:47:07 -05:00
parent 8337f2febc
commit a0171fc176
3 changed files with 0 additions and 10 deletions
@@ -4,7 +4,6 @@ Contains most of the procs that are called when a mob is attacked by something
bullet_act
ex_act
meteor_act
emp_act
*/
@@ -138,13 +137,6 @@ emp_act
. = shield.handle_shield(src, damage, damage_source, attacker, def_zone, attack_text)
if(.) return
return 0
/*
/mob/living/carbon/human/emp_act(severity)
for(var/obj/O in src)
if(!O) continue
O.emp_act(severity)
..()
*/
//Returns 1 if the attack hit, 0 if it missed.
/mob/living/carbon/human/proc/attacked_by(var/obj/item/I, var/mob/living/user, var/def_zone)
-1
View File
@@ -231,7 +231,6 @@ var/list/organ_cache = list()
//Note: external organs have their own version of this proc
/obj/item/organ/proc/take_damage(amount, var/silent=0)
world << "take_damage([amount], [silent]) called on [src.name]."
if(src.status & ORGAN_ROBOT)
src.damage = between(0, src.damage + (amount * 0.8), max_damage)
else
-1
View File
@@ -222,7 +222,6 @@
return (vital || brute_dam + burn_dam + additional_damage < max_damage)
/obj/item/organ/external/take_damage(brute, burn, sharp, edge, used_weapon = null, list/forbidden_limbs = list())
world << "take_damage([brute], [burn], [sharp], [edge], [used_weapon], [forbidden_limbs]) called on [src.name]."
if((brute <= 0) && (burn <= 0))
return 0
if(status & ORGAN_DESTROYED)