From dd4558ff58d29df6d3dce85bf7a2f310656b8caa Mon Sep 17 00:00:00 2001 From: Jerry Wester Date: Sun, 11 Dec 2022 21:59:16 -0700 Subject: [PATCH] Grant suits a default radiation protection value --- code/modules/mod/mod_control.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mod/mod_control.dm b/code/modules/mod/mod_control.dm index 5b0fda2a13..2e650b8045 100644 --- a/code/modules/mod/mod_control.dm +++ b/code/modules/mod/mod_control.dm @@ -18,7 +18,7 @@ slot_flags = ITEM_SLOT_BACK strip_delay = 10 SECONDS slowdown = 2 - armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 0, BIO = 100, FIRE = 25, ACID = 25, WOUND = 10) + armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 0, BIO = 100, FIRE = 25, ACID = 25, WOUND = 10, RAD = 0) actions_types = list( /datum/action/item_action/mod/deploy, /datum/action/item_action/mod/activate,