Update vorepanel_vr.dm

This commit is contained in:
Cameron653
2016-12-12 14:40:13 -05:00
committed by GitHub
parent d93e15a3f4
commit 76144c242d
+3 -3
View File
@@ -481,15 +481,15 @@
if(href_list["b_escapable"])
if(selected.escapable == 0) //Chance escapable.
selected.escapable = 1
usr << "<span class='warning'>Prey now have a chance to escape your [B.name].</span>"
usr << "<span class='warning'>Prey now have a chance to escape your [selected.name].</span>"
else if(selected.escapable == 1) //Always escapable
selected.escapable = 2
usr << "<span class='warning'>Prey will always be able to escape from your [B.name].</span>"
usr << "<span class='warning'>Prey will always be able to escape from your [selected.name].</span>"
else if(selected.escapable == 2) //Never escapable.
selected.escapable = 0
usr << "<span class='warning'>Prey will not be able to escape from your [B.name].</span>"
usr << "<span class='warning'>Prey will not be able to escape from your [selected.name].</span>"
else
usr << "<span class='warning'>Something went wrong. Your stomach is now unescapable. Press the button again to make it escapable.</span>" //If they somehow have a varable that's not 0 or 1
selected.escapable = 0