From 3d09c09e77152b968faed481217ae35ae8cf4be1 Mon Sep 17 00:00:00 2001 From: Roxy <94389951+SapphoQueer@users.noreply.github.com> Date: Fri, 23 Jan 2026 19:46:05 +0100 Subject: [PATCH] Locks the warden's campaign hat to warden in loadout (#5160) ## About The Pull Request It should've probably been already the case ## Why It's Good For The Game Oversight fix good ## Proof Of Testing no
Screenshots/Videos
## Changelog :cl: fix: The warden's hat can now only be selected by wardens within the loadout. /:cl: --- modular_zubbers/code/modules/loadout/categories/heads.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/modular_zubbers/code/modules/loadout/categories/heads.dm b/modular_zubbers/code/modules/loadout/categories/heads.dm index ef463468ce7..375c5356a2d 100644 --- a/modular_zubbers/code/modules/loadout/categories/heads.dm +++ b/modular_zubbers/code/modules/loadout/categories/heads.dm @@ -25,6 +25,7 @@ /datum/loadout_item/head/hats/warden/drill name = "Warden's Campaign Hat" item_path = /obj/item/clothing/head/hats/warden/drill + restricted_roles = list(JOB_WARDEN) /datum/loadout_item/head/hats/warden/police/patrol name = "Police Patrol Cap"