From 61274f257322e6a4c916cee63b7b32cea0a802fe Mon Sep 17 00:00:00 2001 From: AzuleUtama <44248086+AzuleUtama@users.noreply.github.com> Date: Mon, 26 Nov 2018 23:09:48 +0000 Subject: [PATCH] Fix for power beacon buff oversight --- code/datums/uplink_item.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 3d00e1068e8..8d871447cd3 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -1252,6 +1252,13 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) surplus = 0 hijack_only = TRUE //This is an item only useful for a hijack traitor, as such, it should only be available in those scenarios. cant_discount = TRUE + excludefrom = list(/datum/game_mode/nuclear) + +/datum/uplink_item/device_tools/singularity_beacon/nuke + reference = "SNGBN" + hijack_only = FALSE // This inherited version exists so nukies can use it while keeping the original hijack only + excludefrom = list() + gamemodes = list(/datum/game_mode/nuclear) /datum/uplink_item/device_tools/syndicate_bomb name = "Syndicate Bomb"