removes stupid comments (old coders I blame)

This commit is contained in:
Contrabang
2022-10-04 12:45:25 -04:00
parent e9ec9cb518
commit 668f8f5307
3 changed files with 3 additions and 3 deletions
@@ -192,7 +192,7 @@
/mob/living/simple_animal/bot/ed209/attackby(obj/item/W, mob/user, params)
..()
if(istype(W, /obj/item/weldingtool) && user.a_intent != INTENT_HARM) // Any intent but harm will heal, so we shouldn't get angry.
return // Added check for welding tool to fix #2432. Welding tool behavior is handled in superclass.
return
if(!isscrewdriver(W) && !locked && (!target)) //If the target is locked, they are recieving damage from the screwdriver
if(W.force && W.damtype != STAMINA)//If force is non-zero and damage type isn't stamina.
retaliate(user)
@@ -101,7 +101,7 @@
/mob/living/simple_animal/bot/honkbot/attackby(obj/item/W, mob/user, params)
..()
if(istype(W, /obj/item/weldingtool) && user.a_intent != INTENT_HARM) // Any intent but harm will heal, so we shouldn't get angry.
return // Added check for welding tool to fix #2432. Welding tool behavior is handled in superclass.
return
if(!isscrewdriver(W) && !locked && (W.force) && (!target) && (W.damtype != STAMINA))//If the target is locked, they are recieving damage from the screwdriver
retaliate(user)
addtimer(CALLBACK(src, .proc/react_buzz), 5)
@@ -196,7 +196,7 @@
/mob/living/simple_animal/bot/secbot/attackby(obj/item/W, mob/user, params)
..()
if(istype(W, /obj/item/weldingtool) && user.a_intent != INTENT_HARM) // Any intent but harm will heal, so we shouldn't get angry.
return // Added check for welding tool to fix #2432. Welding tool behavior is handled in superclass.
return
if(!isscrewdriver(W) && !locked && (W.force) && (!target) && (W.damtype != STAMINA))//If the target is locked, they are recieving damage from the screwdriver
retaliate(user)