From 1fe25ce4205f1062d95eb00da8f1287e2914a8f9 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 15 Jun 2020 22:40:10 +0100 Subject: [PATCH] fixes udders --- .../modules/mob/living/simple_animal/friendly/farm_animals.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm index 003b3272f6..9a14519067 100644 --- a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm +++ b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm @@ -38,7 +38,7 @@ footstep_type = FOOTSTEP_MOB_SHOE /mob/living/simple_animal/hostile/retaliate/goat/Initialize(/datum/reagent/milk_reagent) - udder = new (milk_reagent,"hi") + udder = new (null, milk_reagent) . = ..() /mob/living/simple_animal/hostile/retaliate/goat/Destroy() @@ -145,7 +145,7 @@ footstep_type = FOOTSTEP_MOB_SHOE /mob/living/simple_animal/cow/Initialize() - udder = new(milk_reagent, "hi") + udder = new(null, milk_reagent) . = ..() /mob/living/simple_animal/cow/Destroy()