From ebe0dcbaa41ef7d5b528f4c0cecd5c6c87faae5a Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 16 Jan 2026 18:55:22 -0500 Subject: [PATCH] removes some vestigal vore variables (#7476) we don't use this and we don't have people with ckeys in mimics so lol --- code/modules/mob/living/silicon/robot/examine.dm | 2 +- code/modules/mob/living/simple_mob/subtypes/vore/dino.dm | 4 ---- code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm | 4 ---- code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm | 5 ----- .../mob/living/simple_mob/subtypes/vore/morph/morph.dm | 2 -- code/modules/mob/living/simple_mob/subtypes/vore/snake.dm | 4 ---- code/modules/vore/eating/living_vr.dm | 1 - code/modules/vore/eating/simple_animal_vr.dm | 4 ---- 8 files changed, 1 insertion(+), 25 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/examine.dm b/code/modules/mob/living/silicon/robot/examine.dm index 874adb19694..a1cb78583e9 100644 --- a/code/modules/mob/living/silicon/robot/examine.dm +++ b/code/modules/mob/living/silicon/robot/examine.dm @@ -55,7 +55,7 @@ message += B.get_examine_msg() . += message - if(showvoreprefs && ckey) //ckey so non-controlled mobs don't display it. + if(ckey) //ckey so non-controlled mobs don't display it. . += SPAN_BOLDNOTICE("\[Mechanical Vore Preferences\]") if(print_flavor_text()) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm b/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm index 0775616664f..3019301ca5f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm @@ -41,8 +41,4 @@ max_n2 = 0 minbodytemp = 0 -// Activate Noms! -/mob/living/simple_mob/vore/aggressive/dino - swallowTime = 1 SECOND // Hungry little bastards. - /mob/living/simple_mob/vore/aggressive/dino/virgo3b diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm b/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm index 84be80f1699..a046fdaaca8 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm @@ -30,10 +30,6 @@ say_list_type = /datum/say_list/jelly ai_holder_type = /datum/ai_holder/polaris/simple_mob/retaliate/jelly -// Activate Noms! -/mob/living/simple_mob/animal/space/jelly - swallowTime = 2 SECONDS // Hungry little bastards. - /datum/say_list/jelly emote_hear = list("squishes","spluts","splorts","sqrshes","makes slime noises") emote_see = list("undulates quietly") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm index fce963bd6e9..a6ebfef2096 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm @@ -94,11 +94,6 @@ var/knockdown_chance = 10 //Stubbing your toe on furniture hurts. - showvoreprefs = 0 //Hides mechanical vore prefs for mimics. You can't see their gaping maws when they're just sitting idle. - -/mob/living/simple_mob/vore/aggressive/mimic - swallowTime = 3 SECONDS - /datum/ai_holder/polaris/mimic wander = FALSE hostile = TRUE diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm index dc299594b2b..0591e2bde3a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm @@ -39,8 +39,6 @@ meat_amount = 2 - showvoreprefs = 0 - var/morphed = FALSE var/tooltip = TRUE var/melee_damage_disguised = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm b/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm index 52c594aab27..efef4064d43 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm @@ -32,7 +32,3 @@ base_pixel_y = -16 ai_holder_type = /datum/ai_holder/polaris/simple_mob/melee - -// Activate Noms! -/mob/living/simple_mob/vore/aggressive/giant_snake - swallowTime = 2 SECONDS // Hungry little bastards. diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index ad94ceeadb2..eb0975a0d32 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -4,7 +4,6 @@ var/devourable = TRUE // Can the mob be devoured at all? var/feeding = TRUE // Can the mob be vorishly force fed or fed to others? var/digest_leave_remains = FALSE // Will this mob leave bones/skull/etc after the melty demise? - var/showvoreprefs = TRUE // Determines if the mechanical vore preferences button will be displayed on the mob or not. var/obj/belly/vore_selected // Default to no vore capability. var/list/vore_organs = list() // List of vore containers inside a mob var/absorbed = FALSE // If a mob is absorbed into another diff --git a/code/modules/vore/eating/simple_animal_vr.dm b/code/modules/vore/eating/simple_animal_vr.dm index a4dfd568353..6623a94d72c 100644 --- a/code/modules/vore/eating/simple_animal_vr.dm +++ b/code/modules/vore/eating/simple_animal_vr.dm @@ -1,7 +1,3 @@ -///////////////////// Simple Animal ///////////////////// -/mob/living/simple_mob - var/swallowTime = (3 SECONDS) //How long it takes to eat its prey in 1/10 of a second. The default is 3 seconds. - // // Simple nom proc for if you get ckey'd into a simple_mob mob! Avoids grabs. //