diff --git a/code/modules/reagents/reagent_containers/food/snacks.dm b/code/modules/reagents/reagent_containers/food/snacks.dm index da6bb4a97c9..35439d27c02 100644 --- a/code/modules/reagents/reagent_containers/food/snacks.dm +++ b/code/modules/reagents/reagent_containers/food/snacks.dm @@ -239,15 +239,13 @@ /obj/item/weapon/reagent_containers/food/snacks/attack_animal(mob/M) if(isanimal(M)) + M.changeNext_move(CLICK_CD_MELEE) if(iscorgi(M)) if(bitecount >= 4) M.visible_message("[M] [pick("burps from enjoyment", "yaps for more", "woofs twice", "looks at the area where \the [src] was")].","You swallow up the last part of \the [src].") playsound(src.loc,'sound/items/eatfood.ogg', rand(10,50), 1) var/mob/living/simple_animal/pet/corgi/C = M - if (C.health <= C.maxHealth + 5) - C.health += 5 - else - C.health = C.maxHealth + C.health = min(C.health + 5, C.maxHealth) del(src) else M.visible_message("[M] takes a bite of \the [src].","You take a bite of \the [src].")