Skip to content

Commit

Permalink
bugfix: normal security enforcer in "enforcer kit" (#4128)
Browse files Browse the repository at this point in the history
  • Loading branch information
NightDawnFox authored Dec 25, 2023
1 parent 400167a commit 658487f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/machinery/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@
add_fingerprint(user)
var/list/available_kits = list(
"Dominator Kit" = list(/obj/item/gun/energy/dominator/sibyl, /obj/item/clothing/accessory/holster),
"Enforcer Kit" = list(/obj/item/gun/projectile/automatic/pistol/enforcer, /obj/item/ammo_box/magazine/enforcer, /obj/item/ammo_box/magazine/enforcer, /obj/item/clothing/accessory/holster),
"Enforcer Kit" = list(/obj/item/gun/projectile/automatic/pistol/enforcer/security, /obj/item/ammo_box/magazine/enforcer, /obj/item/ammo_box/magazine/enforcer, /obj/item/clothing/accessory/holster),
)
var/weapon_kit = input(user, "Select a weaponary kit.") as null|anything in available_kits
if(!weapon_kit)
Expand Down

0 comments on commit 658487f

Please sign in to comment.