From 486b314a4ae07f7794654ed87ee3d6b3cce06b04 Mon Sep 17 00:00:00 2001 From: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Date: Mon, 11 Aug 2025 01:36:49 +0530 Subject: [PATCH] Fixes 2 platform problems (#92475) --- code/game/objects/structures/platform.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/platform.dm b/code/game/objects/structures/platform.dm index 48e1e2b78c7..6adfcf310aa 100644 --- a/code/game/objects/structures/platform.dm +++ b/code/game/objects/structures/platform.dm @@ -1,4 +1,4 @@ -#define PLATFORM_BASE_MATERIAL_AMOUNT 2000 +#define PLATFORM_BASE_MATERIAL_AMOUNT (2 * SHEET_MATERIAL_AMOUNT) /// A raised platform you can stand on top of /obj/structure/platform @@ -21,7 +21,7 @@ /// Icon used for the frame var/frame_icon = 'icons/obj/smooth_structures/platform/frame_faces/window_frame_normal.dmi' /// Material used in our construction - var/sheet_type = /obj/item/stack/sheet/iron + var/sheet_type = null /// Count of sheets used in our construction var/sheet_amount = 2 /// What footstep do we use?