From 0786ecaf5ce006d952f60cad36c1e57d8d2ddc18 Mon Sep 17 00:00:00 2001 From: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Date: Mon, 17 Jul 2023 04:49:11 -0500 Subject: [PATCH] stealth implant boxes don't drop cardboard (#21706) --- code/game/objects/items/weapons/implants/implant_stealth.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/implants/implant_stealth.dm b/code/game/objects/items/weapons/implants/implant_stealth.dm index 29a5d60acc8..17ca24b2ecf 100644 --- a/code/game/objects/items/weapons/implants/implant_stealth.dm +++ b/code/game/objects/items/weapons/implants/implant_stealth.dm @@ -95,7 +95,8 @@ desc = "It's so normal that you didn't notice it before." icon_state = "agentbox" max_integrity = 1 - move_speed_multiplier = 0.5 // You can move at normal walk speed while in this box. + move_speed_multiplier = 0.5 // You can move at run speed while in this box. + material_drop = null /// UID of the person who summoned this box with an implant. var/implant_user_UID // This has to be a separate object and not just an image because the image will inherit the box's 0 alpha while it is stealthed.