From e864ada371b58adc3c69545c1166e4903f5a281a Mon Sep 17 00:00:00 2001 From: Yoshax Date: Wed, 27 Jul 2016 21:42:36 +0100 Subject: [PATCH] Adjusts the uplink ammo costs --- code/datums/uplink/ammunition.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/datums/uplink/ammunition.dm b/code/datums/uplink/ammunition.dm index 8569308543..756d5fc55b 100644 --- a/code/datums/uplink/ammunition.dm +++ b/code/datums/uplink/ammunition.dm @@ -25,11 +25,12 @@ /datum/uplink_item/item/ammo/tommydrum name = "Tommygun Drum Magazine (.45)" path = /obj/item/ammo_magazine/tommydrum - item_cost = 4 // Buy 40 bullets, get 10 free! + item_cost = 40 // Buy 40 bullets, get 10 free! /datum/uplink_item/item/ammo/darts name = "Darts" path = /obj/item/ammo_magazine/chemdart + item_cost = 5 /datum/uplink_item/item/ammo/sniperammo name = "Anti-Materiel Rifle ammo box (14.5mm)" @@ -98,7 +99,9 @@ /datum/uplink_item/item/ammo/g12/stun name = "12g Auto-Shotgun Magazine (Stun)" path = /obj/item/weapon/storage/box/stunshells + item_cost = 10 // Discount due to it being LTL. /datum/uplink_item/item/ammo/g12/flash name = "12g Auto-Shotgun Magazine (Flash)" - path = /obj/item/weapon/storage/box/flashshells \ No newline at end of file + path = /obj/item/weapon/storage/box/flashshells + item_cost = 10 // Discount due to it being LTL. \ No newline at end of file