From acd6a5d8e53f43779e0f9c9d5308658c4b77e330 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 7 Jan 2021 17:10:26 -0700 Subject: [PATCH 1/2] Update sealed.dm --- code/modules/vehicles/sealed.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/vehicles/sealed.dm b/code/modules/vehicles/sealed.dm index 28f6b1cca8..63c7c9f858 100644 --- a/code/modules/vehicles/sealed.dm +++ b/code/modules/vehicles/sealed.dm @@ -1,6 +1,7 @@ /obj/vehicle/sealed enclosed = TRUE // you're in a sealed vehicle dont get dinked idiot var/enter_delay = 20 + var/explode_on_death = TRUE flags_1 = BLOCK_FACE_ATOM_1 /obj/vehicle/sealed/generate_actions() @@ -87,7 +88,8 @@ /obj/vehicle/sealed/Destroy() DumpMobs() - explosion(loc, 0, 1, 2, 3, 0) + if(explode_on_death) + explosion(loc, 0, 1, 2, 3, 0) return ..() /obj/vehicle/sealed/proc/DumpMobs(randomstep = TRUE) From 4e096d2a9f5f97b08ad3e9cb8e1bbbe03807115b Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 7 Jan 2021 17:11:03 -0700 Subject: [PATCH 2/2] Update clowncar.dm --- code/modules/vehicles/cars/clowncar.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/vehicles/cars/clowncar.dm b/code/modules/vehicles/cars/clowncar.dm index 655ca21b93..0b75dbf4db 100644 --- a/code/modules/vehicles/cars/clowncar.dm +++ b/code/modules/vehicles/cars/clowncar.dm @@ -139,6 +139,7 @@ /obj/vehicle/sealed/car/clowncar/twitch_plays key_type = null + explode_on_death = FALSE /obj/vehicle/sealed/car/clowncar/twitch_plays/Initialize() . = ..()