diff --git a/code/__DEFINES/voreconstants.dm b/code/__DEFINES/voreconstants.dm
index 67ef9bc81f..372c5b776c 100644
--- a/code/__DEFINES/voreconstants.dm
+++ b/code/__DEFINES/voreconstants.dm
@@ -21,11 +21,9 @@
#define ABSORBABLE (1<<9)
/// Can get simplemob vored?
#define MOBVORE (1<<10)
-/// Spontaneous vore. Unused, usable in the future?
-#define SPNTVORE (1<<11)
/// Change this whenever you add a vore flag, must be largest vore flag*2-1
-#define MAX_VORE_FLAG (1<<12)-1
+#define MAX_VORE_FLAG (1<<11)-1
#define isbelly(A) istype(A, /obj/belly)
diff --git a/code/modules/vore/eating/living.dm b/code/modules/vore/eating/living.dm
index ff4a26e0e2..6bc44e6489 100644
--- a/code/modules/vore/eating/living.dm
+++ b/code/modules/vore/eating/living.dm
@@ -284,7 +284,7 @@
to_chat(src,"You attempted to apply your vore prefs but somehow you're in this character without a client.prefs variable. Tell a dev.")
return FALSE
ENABLE_BITFIELD(vore_flags,VOREPREF_INIT)
- COPY_SPECIFIC_BITFIELDS(vore_flags, client.prefs.vore_flags, DIGESTABLE | DEVOURABLE | FEEDING | LICKABLE | SMELLABLE | ABSORBABLE | MOBVORE | SPNTVORE)
+ COPY_SPECIFIC_BITFIELDS(vore_flags, client.prefs.vore_flags, DIGESTABLE | DEVOURABLE | FEEDING | LICKABLE | SMELLABLE | ABSORBABLE | MOBVORE)
vore_taste = client.prefs.vore_taste
vore_smell = client.prefs.vore_smell
diff --git a/code/modules/vore/eating/vorepanel.dm b/code/modules/vore/eating/vorepanel.dm
index 489ed39094..a3adc89352 100644
--- a/code/modules/vore/eating/vorepanel.dm
+++ b/code/modules/vore/eating/vorepanel.dm
@@ -186,7 +186,6 @@
"feeding" = CHECK_BITFIELD(host.vore_flags, FEEDING),
"absorbable" = CHECK_BITFIELD(host.vore_flags, ABSORBABLE),
"allowmobvore" = CHECK_BITFIELD(host.vore_flags, MOBVORE),
- "allow_spontaneous_tf" = CHECK_BITFIELD(host.vore_flags, SPNTVORE),
"vore_sounds" = CHECK_BITFIELD(host.client.prefs.cit_toggles, EATING_NOISES),
"digestion_sounds" = CHECK_BITFIELD(host.client.prefs.cit_toggles, DIGESTION_NOISES),
"lickable" = CHECK_BITFIELD(host.vore_flags, LICKABLE),
@@ -307,12 +306,6 @@
host.vore_smell = new_smell
unsaved_changes = TRUE
return TRUE
- if("toggle_allow_spontaneous_tf")
- TOGGLE_BITFIELD(host.vore_flags, SPNTVORE)
- if(host.client.prefs)
- COPY_SPECIFIC_BITFIELDS(host.client.prefs.vore_flags, host.vore_flags, SPNTVORE)
- unsaved_changes = TRUE
- return TRUE
if("toggle_digest")
TOGGLE_BITFIELD(host.vore_flags, DIGESTABLE)
if(host.client.prefs)
diff --git a/tgui/packages/tgui/interfaces/VorePanel.js b/tgui/packages/tgui/interfaces/VorePanel.js
index 4a99bada10..3e29c8bff4 100644
--- a/tgui/packages/tgui/interfaces/VorePanel.js
+++ b/tgui/packages/tgui/interfaces/VorePanel.js
@@ -431,7 +431,6 @@ const VoreUserPreferences = (props, context) => {
feeding,
absorbable,
allowmobvore,
- allow_spontaneous_tf,
vore_sounds,
digestion_sounds,
lickable,
@@ -450,27 +449,6 @@ const VoreUserPreferences = (props, context) => {
}>
-
-
-
-
-
+
+
+
+
+