From 76144c242de9ed87f2f72364578b360da6948f04 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Mon, 12 Dec 2016 14:40:13 -0500 Subject: [PATCH] Update vorepanel_vr.dm --- code/modules/vore/eating/vorepanel_vr.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index ddd1993b8ac..7d44163daf0 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -481,15 +481,15 @@ if(href_list["b_escapable"]) if(selected.escapable == 0) //Chance escapable. selected.escapable = 1 - usr << "Prey now have a chance to escape your [B.name]." + usr << "Prey now have a chance to escape your [selected.name]." else if(selected.escapable == 1) //Always escapable selected.escapable = 2 - usr << "Prey will always be able to escape from your [B.name]." + usr << "Prey will always be able to escape from your [selected.name]." else if(selected.escapable == 2) //Never escapable. selected.escapable = 0 - usr << "Prey will not be able to escape from your [B.name]." + usr << "Prey will not be able to escape from your [selected.name]." else usr << "Something went wrong. Your stomach is now unescapable. Press the button again to make it escapable." //If they somehow have a varable that's not 0 or 1 selected.escapable = 0