Nerfs Security Jackboots slightly. (#3414)

## About The Pull Request

Disabler boots have a 5% chance (per locker) to spawn in a locker during
april fools.

## Why It's Good For The Game

What have I done.

## Proof Of Testing

If it compiles, it works.

## Changelog

🆑 BurgerBB
del: Disabler boots have a 5% chance (per locker) to spawn in a locker
during april fools.
/🆑
This commit is contained in:
BurgerLUA
2025-03-31 23:11:31 -06:00
committed by GitHub
parent ab0fb44b70
commit a89db9515c
@@ -1,7 +1,7 @@
/obj/structure/closet/secure_closet/security/sec/PopulateContents()
. = ..()
new /obj/item/storage/toolbox/guncase/skyrat/pistol/sec_glock(src)
if(check_holidays(APRIL_FOOLS))
if(check_holidays(APRIL_FOOLS) && prob(5))
new /obj/item/clothing/shoes/gunboots/disabler(src)
/obj/structure/closet/secure_closet/warden/PopulateContents()