From 9a5e40a00e1e1bc6dda55bd4a14782e8ae316dcc Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 26 Sep 2019 10:59:30 +0200 Subject: [PATCH] Update goose.dm --- .../mob/living/simple_animal/animals/goose.dm | 33 ++++++++++--------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/goose.dm b/code/modules/mob/living/simple_animal/animals/goose.dm index 2326036ea2..ed1494a96c 100644 --- a/code/modules/mob/living/simple_animal/animals/goose.dm +++ b/code/modules/mob/living/simple_animal/animals/goose.dm @@ -54,23 +54,24 @@ meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat var/honking = 0 - New() - ..() - if (prob(10)) - name = "Untitled Goose" - melee_damage_lower = 0 - melee_damage_upper = 1 - hostile = 0 - retaliate = 1 - cooperative = 1 - maxHealth = 50 - health = 50 - honk() - honking = 1 - Life() - ..() - if(honking && prob(1)) +/mob/living/simple_animal/hostile/goose/New() + ..() + if (prob(10)) + name = "Untitled Goose" + melee_damage_lower = 0 + melee_damage_upper = 1 + hostile = 0 + retaliate = 1 + cooperative = 1 + maxHealth = 50 + health = 50 honk() + honking = 1 + +/mob/living/simple_animal/hostile/goose/Life() + ..() + if(honking && prob(1)) + honk() /mob/living/simple_animal/hostile/goose/set_target() . = ..()