From c18529e034fbebf219bb7619933f0f2b88735a69 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 9 Jun 2021 13:35:58 -0400 Subject: [PATCH] Remove fake intent var --- code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm | 2 +- .../modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm | 2 +- code/modules/mob/mob_defines.dm | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm index 41cd6aec931..edc2b9eac05 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm @@ -56,7 +56,7 @@ var/feeding_delay = 30 SECONDS // How long do we have to wait to bite our host's organs? var/last_feeding = 0 - intent = I_HELP + a_intent = I_HELP holder_type = /obj/item/weapon/holder/leech diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm index f948da609f3..19573d78f11 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm @@ -121,7 +121,7 @@ var/obj/item/clothing/head/newhat = H.get_active_hand() H.drop_from_inventory(newhat, get_turf(src)) if(!stat) - intent = I_HELP + a_intent = I_HELP newhat.attack_hand(src) else if(src.get_active_hand()) to_chat(user, "\The [src] seems busy with \the [get_active_hand()] already!") diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index ecd6604a83e..90f6943a8c8 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -110,7 +110,6 @@ var/stunned = 0.0 var/weakened = 0.0 var/losebreath = 0.0//Carbon - var/intent = null//Living var/shakecamera = 0 var/a_intent = I_HELP//Living var/m_int = null//Living