From 6cad1b0c614f58e735507f0da9c8e7f11ad8025d Mon Sep 17 00:00:00 2001 From: Iain Price Date: Sun, 8 May 2022 19:51:17 +0100 Subject: [PATCH] Set steel_sheet_cost for tablets (PDAs) to 2 (#66773) Destroyed player PDA / tablet drops half of the steel_sheet_cost as a stack on destruction. Having this set to 1 creates zero sized stacks of iron. Rather than fix the code that drops, I just upped this to make it drop 1 sheet on destruction, which is probably the intended effect. --- code/modules/modular_computers/computers/item/tablet.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/modular_computers/computers/item/tablet.dm b/code/modules/modular_computers/computers/item/tablet.dm index fb7bb808ee3..beec22f61b0 100644 --- a/code/modules/modular_computers/computers/item/tablet.dm +++ b/code/modules/modular_computers/computers/item/tablet.dm @@ -11,7 +11,7 @@ max_hardware_size = 1 w_class = WEIGHT_CLASS_SMALL max_bays = 3 - steel_sheet_cost = 1 + steel_sheet_cost = 2 slot_flags = ITEM_SLOT_ID | ITEM_SLOT_BELT has_light = TRUE //LED flashlight! comp_light_luminosity = 2.3 //Same as the PDA