diff --git a/modular_chomp/code/game/objects/structures/watercloset_ch.dm b/modular_chomp/code/game/objects/structures/watercloset_ch.dm
index 19f523cea9..99503e6d09 100644
--- a/modular_chomp/code/game/objects/structures/watercloset_ch.dm
+++ b/modular_chomp/code/game/objects/structures/watercloset_ch.dm
@@ -30,7 +30,7 @@
bowl_contents += L
if(bowl_contents.len)
refilling = TRUE
- user.visible_message("[user] flushes the toilet.", "You flush the toilet.")
+ user.visible_message("[user] flushes the [lowertext(name)].", "You flush the [lowertext(name)].")
playsound(src, 'sound/vore/death7.ogg', 50, 1) //Got lazy about getting new sound files. Have a sick remix lmao.
playsound(src, 'sound/effects/bubbles.ogg', 50, 1)
playsound(src, 'sound/mecha/powerup.ogg', 30, 1)
@@ -66,7 +66,7 @@
return
if(refilling)
playsound(src, 'sound/machines/door_locked.ogg', 30, 1)
- to_chat(user, "The toilet is still refilling its tank.")
+ to_chat(user, "The [lowertext(name)] is still refilling its tank.")
return ..()
/obj/structure/toilet/attackby(obj/item/I as obj, mob/living/user as mob)