From d6de48663e91f1c09e7c47637613999fd1cc9b24 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Tue, 24 Jan 2012 15:41:54 -0500 Subject: [PATCH] livestock spelling/grammer fixes --- code/WorkInProgress/Tastyfish/livestock.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/WorkInProgress/Tastyfish/livestock.dm b/code/WorkInProgress/Tastyfish/livestock.dm index dcabe381eca..8b14956004a 100644 --- a/code/WorkInProgress/Tastyfish/livestock.dm +++ b/code/WorkInProgress/Tastyfish/livestock.dm @@ -6,9 +6,9 @@ speak_chance = 1 turns_per_move = 15 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat - response_help = "pets the" - response_disarm = "gently pushes aside the" - response_harm = "kicks the" + response_help = "pets \the" + response_disarm = "gently pushes aside \the" + response_harm = "kicks \the" var/max_nutrition = 100 // different animals get hungry faster, basically number of 5-second steps from full to starving (60 == 5 minutes) var/nutrition_step // cycle step in nutrition system var/obj/movement_target // eating-ing target @@ -141,7 +141,7 @@ max_nutrition = 200 speak = list("Bock bock!","Cl-cluck.","Click.") speak_emote = list("bocks","clucks") - emote_hear = list("bocks", "clucks", "squacks") + emote_hear = list("bocks", "clucks", "squawks") /mob/living/simple_animal/livestock/chicken/Life() ..() @@ -151,7 +151,7 @@ // lay an egg with probability of 5% in 5 second time period if(prob(33)) new/obj/item/weapon/reagent_containers/food/snacks/egg(src.loc) // lay an egg - nutrition -= 5 + nutrition -= 25 /obj/item/weapon/reagent_containers/food/snacks/meat/chicken name = "Chicken"