fixes the pathing for the nuclear operative syndicate bomb uplink entries (#92361)

## About The Pull Request

fixes https://github.com/tgstation/tgstation/issues/92359
This commit is contained in:
necromanceranne
2025-07-31 12:54:09 +10:00
committed by Roxy
parent fe20499f03
commit 163c03a3a7

View File

@@ -498,18 +498,7 @@
item = /obj/item/storage/backpack/duffelbag/syndie/x4
cost = 10 // 50% discount!
/datum/uplink_item/explosives/military_grade/emp
name = "Syndicate EMP Bomb"
desc = "A variation of the syndicate bomb designed to produce a large EMP effect."
item = /obj/item/sbeacondrop/emp
cost = 6
/datum/uplink_item/explosives/syndicate_bomb/emp/New()
..()
if(HAS_TRAIT(SSstation, STATION_TRAIT_CYBERNETIC_REVOLUTION))
cost *= 2
/datum/uplink_item/explosives/syndicate_bomb
/datum/uplink_item/explosives/military_grade/syndicate_bomb
name = "Syndicate Bomb"
desc = "The Syndicate bomb is a fearsome device capable of massive destruction. It has an adjustable timer, \
with a minimum of %MIN_BOMB_TIMER seconds, and can be bolted to the floor with a wrench to prevent \
@@ -520,10 +509,21 @@
item = /obj/item/sbeacondrop/bomb
cost = 8
/datum/uplink_item/explosives/syndicate_bomb/New()
/datum/uplink_item/explosives/military_grade/syndicate_bomb/New()
. = ..()
desc = replacetext(desc, "%MIN_BOMB_TIMER", SYNDIEBOMB_MIN_TIMER_SECONDS)
/datum/uplink_item/explosives/military_grade/syndicate_bomb/emp
name = "Syndicate EMP Bomb"
desc = "A variation of the syndicate bomb designed to produce a large EMP effect."
item = /obj/item/sbeacondrop/emp
cost = 6
/datum/uplink_item/explosives/military_grade/syndicate_bomb/emp/New()
. = ..()
if(HAS_TRAIT(SSstation, STATION_TRAIT_CYBERNETIC_REVOLUTION))
cost *= 2
// Support (Borgs and Reinforcements)
/datum/uplink_category/reinforcements