From 08c37074f4b949fcd42c50d1bd816b3ea518eea5 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sat, 6 Mar 2021 18:41:24 -0500 Subject: [PATCH] Prevents sliver / plutonium core from self irradiating --- code/game/objects/items/theft_items.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/theft_items.dm b/code/game/objects/items/theft_items.dm index d47932f3515..047573d607e 100644 --- a/code/game/objects/items/theft_items.dm +++ b/code/game/objects/items/theft_items.dm @@ -11,6 +11,7 @@ icon_state = "plutonium_core" item_state = "plutoniumcore" resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF + flags_2 = RAD_NO_CONTAMINATE_2 //Don't have the item itself become irradiated when it makes radiation. var/pulse = 0 var/cooldown = 0 var/pulseicon = "plutonium_core_pulse"