diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 0bfd276d6ee..baa2f172a30 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -1161,7 +1161,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) throwing weapons. The bolas can knock a target down and the shurikens will embed into limbs." reference = "STK" item = /obj/item/storage/box/syndie_kit/throwing_weapons - cost = 3 + cost = 1 /datum/uplink_item/stealthy_weapons/edagger name = "Energy Dagger" diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index bc6f310547d..08ac3fe940f 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -233,10 +233,11 @@ max_w_class = WEIGHT_CLASS_NORMAL /obj/item/storage/box/syndie_kit/throwing_weapons/populate_contents() - for(var/I in 1 to 5) + for(var/I in 1 to 4) new /obj/item/throwing_star(src) new /obj/item/restraints/legcuffs/bola/tactical(src) new /obj/item/restraints/legcuffs/bola/tactical(src) + new /obj/item/restraints/legcuffs/bola/tactical(src) /obj/item/storage/box/syndie_kit/sarin name = "Sarin Gas Grenades"