From 162f6c5effaf8fbb1cd81c4cfcc0f7969b3544ad Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 16 Sep 2022 00:43:30 -0700 Subject: [PATCH 1/4] Enable spontaneous prey for all mobs --- code/modules/mob/living/simple_mob/simple_mob_vr.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index c11e9e183a..a8ac7e6cac 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -54,6 +54,7 @@ var/obj/item/device/radio/headset/mob_radio //Adminbus headset for simplemob shenanigans. does_spin = FALSE can_be_drop_pred = TRUE // Mobs are pred by default. + can_be_drop_prey = TRUE //CHOMP Add This also counts for spontaneous prey for telenoms and phase noms. var/damage_threshold = 0 //For some mobs, they have a damage threshold required to deal damage to them. From 0ba0d124c75914ef6eb5678464655c09393c72bb Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 16 Sep 2022 00:45:03 -0700 Subject: [PATCH 2/4] Allow punpun to be spontaneous vored --- code/modules/mob/living/carbon/human/npcs.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/human/npcs.dm b/code/modules/mob/living/carbon/human/npcs.dm index 23f7bd722a..172c1b5c0a 100644 --- a/code/modules/mob/living/carbon/human/npcs.dm +++ b/code/modules/mob/living/carbon/human/npcs.dm @@ -5,6 +5,7 @@ worn_state = "punpun" has_sensor = 0 species_restricted = list("Monkey") + can_be_drop_prey = TRUE //CHOMP Add /mob/living/carbon/human/monkey/punpun/Initialize() . = ..() From 6130f4e0fd338340978d3107f54aa0df251e6504 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 16 Sep 2022 00:59:50 -0700 Subject: [PATCH 3/4] you're not the punpun I'm looking for --- code/modules/mob/living/carbon/human/npcs.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/npcs.dm b/code/modules/mob/living/carbon/human/npcs.dm index 172c1b5c0a..23f7bd722a 100644 --- a/code/modules/mob/living/carbon/human/npcs.dm +++ b/code/modules/mob/living/carbon/human/npcs.dm @@ -5,7 +5,6 @@ worn_state = "punpun" has_sensor = 0 species_restricted = list("Monkey") - can_be_drop_prey = TRUE //CHOMP Add /mob/living/carbon/human/monkey/punpun/Initialize() . = ..() From bb62f549a2c70063249d2d00bb797f5c6b24f415 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 16 Sep 2022 01:08:11 -0700 Subject: [PATCH 4/4] Actually allow punpun to be spont nommed --- code/modules/mob/living/carbon/human/npcs.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/human/npcs.dm b/code/modules/mob/living/carbon/human/npcs.dm index 23f7bd722a..3aa2c1bd92 100644 --- a/code/modules/mob/living/carbon/human/npcs.dm +++ b/code/modules/mob/living/carbon/human/npcs.dm @@ -12,3 +12,4 @@ real_name = name w_uniform = new /obj/item/clothing/under/punpun(src) regenerate_icons() + can_be_drop_prey = TRUE //CHOMP Add