From 3dc0636ebb1c98bbc4082167d573ba8c9b769d05 Mon Sep 17 00:00:00 2001
From: Kashargul <144968721+Kashargul@users.noreply.github.com>
Date: Sat, 23 Nov 2024 19:01:23 +0100
Subject: [PATCH] no old spans
---
.../mob/living/simple_mob/subtypes/animal/turkeygirl.dm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/turkeygirl.dm b/code/modules/mob/living/simple_mob/subtypes/animal/turkeygirl.dm
index 7f2ddba2201..9c29db15a3a 100644
--- a/code/modules/mob/living/simple_mob/subtypes/animal/turkeygirl.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/animal/turkeygirl.dm
@@ -82,9 +82,9 @@
if(nutrition >= max_nutrition)
if(user == src)
- to_chat(src, "You're too full to eat another bite.")
+ to_chat(src, span_notice("You're too full to eat another bite."))
return
- to_chat(user, "\The [src] seems too full to eat.")
+ to_chat(user, span_notice("\The [src] seems too full to eat."))
return
user.setClickCooldown(user.get_attack_speed(O))
@@ -94,8 +94,8 @@
O.bitecount ++
O.On_Consume(src)
if(O)
- to_chat(user, "\The [src] takes a bite of \the [O].")
+ to_chat(user, span_notice("\The [src] takes a bite of \the [O]."))
if(user != src)
- to_chat(src, "\The [user] feeds \the [O] to you.")
+ to_chat(src, span_notice("\The [user] feeds \the [O] to you."))
playsound(src, 'sound/items/eatfood.ogg', 75, 1)
update_icon()