From 30bbac459902acb5b59c0f0a56f689dd2d439d5c Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Tue, 19 Sep 2023 01:04:08 +0100 Subject: [PATCH] Fixes the tradeband scanner. (#4423) # About the pull request So it turns out I never gave the tradeband scanner the trait for itself... # Explain why it's good for the game # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: Fixes the CMB tradeband scanner not being able to do it's job. /:cl: --- code/game/objects/items/devices/scanners.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 1deee0f2ef8a..38ff8859ef97 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -465,3 +465,4 @@ FORENSIC SCANNER w_class = SIZE_SMALL flags_atom = FPRINT flags_equip_slot = SLOT_WAIST + inherent_traits = list(TRAIT_TOOL_TRADEBAND)