mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +00:00
9 lines
249 B
Plaintext
9 lines
249 B
Plaintext
/obj/machinery/vending/security/Initialize()
|
|
var/list/extra_products = list(
|
|
/obj/item/ammo_box/magazine/m45/taser = 10,
|
|
/obj/item/ammo_box/magazine/e45/taser = 10,
|
|
/obj/item/device/hailer = 10
|
|
)
|
|
LAZYADD(products, extra_products)
|
|
. = ..()
|