diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm index 358c644e4e7..0004f30ea38 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm @@ -568,10 +568,10 @@ I think I covered everything. /obj/belly/dragon autotransferchance = 50 autotransferwait = 150 - escapable = 1 + escapable = TRUE escapechance = 100 escapetime = 15 - fancy_vore = 1 + fancy_vore = TRUE contamination_color = "grey" contamination_flavor = "Wet" vore_verb = "slurp" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm b/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm index 16c6171e312..7a204e111ed 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/macrophage.dm @@ -154,7 +154,7 @@ contamination_color = "green" vore_verb = "absorb" escapable = TRUE - escapable = 20 + escapechance = 20 desc = "In an attempt to get away from the giant virus, it's oversized envelope proteins dragged you right past it's matrix, encapsulating you deep inside it's capsid... The strange walls kneading and keeping you tight along within it's nucleoprotein." belly_fullscreen = "VBO_gematically_angular" belly_fullscreen_color = "#87d8d8" diff --git a/tgui/packages/tgui/interfaces/VorePanel/VoreSelectedBellyTabs/VoreSelectedBellyInteractions.tsx b/tgui/packages/tgui/interfaces/VorePanel/VoreSelectedBellyTabs/VoreSelectedBellyInteractions.tsx index 6c8bf027e18..b74acbdcea8 100644 --- a/tgui/packages/tgui/interfaces/VorePanel/VoreSelectedBellyTabs/VoreSelectedBellyInteractions.tsx +++ b/tgui/packages/tgui/interfaces/VorePanel/VoreSelectedBellyTabs/VoreSelectedBellyInteractions.tsx @@ -197,7 +197,7 @@ export const VoreSelectedBellyInteractions = (props: { action="set_attribute" subAction="b_autotransfer_enabled" editMode={editMode} - active={!!escapable} + active={!!autotransfer_enabled} tooltip={ 'Allows you to setup auto transfer options for this belly. So that prey is automatically moved depending on a timer or content count.' }