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()