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