diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm
index 559388f542..dcd42d9377 100644
--- a/code/modules/vore/eating/bellymodes_vr.dm
+++ b/code/modules/vore/eating/bellymodes_vr.dm
@@ -42,8 +42,8 @@
digest_alert_prey = replacetext(digest_alert_prey,"%belly",lowertext(name))
//Send messages
- owner << "" + digest_alert_owner + ""
- M << "" + digest_alert_prey + ""
+ to_chat(owner, "[digest_alert_owner]")
+ M.visible_message("You watch as [owner]'s form loses its additions.", "[digest_alert_prey]")
owner.nutrition += 400 // so eating dead mobs gives you *something*.
playsound(owner.loc, "death_gurgles", 50, 0, -5)
@@ -84,10 +84,8 @@
digest_alert_prey = replacetext(digest_alert_prey,"%belly",lowertext(name))
//Send messages
- owner << "" + digest_alert_owner + ""
- M << "" + digest_alert_prey + ""
- M.visible_message("[digest_alert_owner]", "[digest_alert_prey]",
- "You watch as [owner]'s form lose its additions.")
+ to_chat(owner, "[digest_alert_owner]")
+ M.visible_message("You watch as [owner]'s form loses its additions.", "[digest_alert_prey]")
owner.nutrition += 400 // so eating dead mobs gives you *something*.
playsound(owner.loc, "death_gurgles", 50, 0, -5)
digestion_death(M)
@@ -112,4 +110,4 @@
M.adjustBruteLoss(-1)
M.adjustFireLoss(-1)
owner.nutrition -= 10
- return
\ No newline at end of file
+ return