From 489c7d8c070de732ac8f1ebf84d1739aaea6097a Mon Sep 17 00:00:00 2001 From: Helg2 <93882977+Helg2@users.noreply.github.com> Date: Tue, 30 May 2023 21:55:44 +0300 Subject: [PATCH] Makes syndi-mod in Tactical NukeOps Metagame Syndi-kit unrestricted with access. (#75696) ## About The Pull Request Basically someone forgot to make it unrestricted or add agent's card to the kit so it would be usable when mods were added. ## Why It's Good For The Game 1 more thing that works as intended? ## Changelog :cl: fix: Syndicate mod-suit in Tactical NukeOps Metagame Syndi-kit (the one with bulldog shotgun) now doesn't require any access, so you don't need to buy agent card to simply use it. /:cl: --- code/game/objects/items/storage/uplink_kits.dm | 2 +- code/modules/mod/mod_types.dm | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/uplink_kits.dm b/code/game/objects/items/storage/uplink_kits.dm index 7fb901eebc5..95c4331db57 100644 --- a/code/game/objects/items/storage/uplink_kits.dm +++ b/code/game/objects/items/storage/uplink_kits.dm @@ -154,7 +154,7 @@ new /obj/item/clothing/neck/tie/red/hitman(src) if(KIT_NUKEOPS_METAGAME) - new /obj/item/mod/control/pre_equipped/nuclear(src) // 8 tc + new /obj/item/mod/control/pre_equipped/nuclear/unrestricted(src) // 8 tc new /obj/item/gun/ballistic/shotgun/bulldog/unrestricted(src) // 8 tc new /obj/item/implanter/explosive(src) // 2 tc new /obj/item/ammo_box/magazine/m12g(src) // 2 tc diff --git a/code/modules/mod/mod_types.dm b/code/modules/mod/mod_types.dm index f0a5085f4ec..faf711e4f62 100644 --- a/code/modules/mod/mod_types.dm +++ b/code/modules/mod/mod_types.dm @@ -241,6 +241,9 @@ /obj/item/mod/module/jetpack/advanced, ) +/obj/item/mod/control/pre_equipped/nuclear/unrestricted + req_access = null + /obj/item/mod/control/pre_equipped/elite theme = /datum/mod_theme/elite applied_cell = /obj/item/stock_parts/cell/bluespace