From 012884d5a5e77d721d1e24e50b3757dec08e70d3 Mon Sep 17 00:00:00 2001 From: CatoChristopherMrow Date: Thu, 28 May 2026 16:34:11 -0400 Subject: [PATCH] Fixes holster override (#5693) ## About The Pull Request Fixes the override that already existed for the holster, making it actually do what it was intended to. The call was mis formatted so that it was being misinterpreted and never actually applied. ## Why It's Good For The Game fix good ## Proof Of Testing I did indeed test on localhost.
Screenshots/Videos
## Changelog :cl: UvvU fix: fixed shoulder holster having wrong holdables list /:cl: --- .../code/modules/security/sec_clothing_overrides.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modular_zubbers/code/modules/security/sec_clothing_overrides.dm b/modular_zubbers/code/modules/security/sec_clothing_overrides.dm index e3a8b533cb3..a7bf63f67c6 100644 --- a/modular_zubbers/code/modules/security/sec_clothing_overrides.dm +++ b/modular_zubbers/code/modules/security/sec_clothing_overrides.dm @@ -659,7 +659,7 @@ max_slots = 3 max_total_storage = 16 -/datum/storage/holster/New(atom/parent, max_slots, max_specific_storage, max_total_storage, list/holdables) +/datum/storage/holster/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound, list/holdables) if(length(holdables)) return ..() @@ -690,7 +690,7 @@ /datum/storage/holster/detective max_slots = 4 -/datum/storage/holster/detective/New(atom/parent, max_slots, max_specific_storage, max_total_storage, list/holdables) +/datum/storage/holster/detective/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound, list/holdables) if(length(holdables)) return ..() @@ -717,7 +717,7 @@ /datum/storage/holster/energy max_specific_storage = WEIGHT_CLASS_NORMAL -/datum/storage/holster/energy/New(atom/parent, max_slots, max_specific_storage, max_total_storage, list/holdables) +/datum/storage/holster/energy/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound, list/holdables) if(length(holdables)) return ..()