From 2f6c9ec50ec2157d8c704746e548faa9c60cf78a Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Fri, 5 Feb 2016 12:06:53 -0600 Subject: [PATCH] Bulldog Fix --- .../game/objects/items/weapons/storage/backpack.dm | 2 +- code/modules/projectiles/ammunition/magazines.dm | 14 +++++++------- .../modules/projectiles/guns/projectile/shotgun.dm | 2 +- code/modules/uplink/uplink_item.dm | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 43971d8b895..3f813d7bba0 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -385,7 +385,7 @@ for(var/i in 1 to 6) new /obj/item/ammo_box/magazine/m12g(src) new /obj/item/ammo_box/magazine/m12g/buckshot(src) - new /obj/item/ammo_box/magazine/m12g/stun(src) + new /obj/item/ammo_box/magazine/m12g/slug(src) new /obj/item/ammo_box/magazine/m12g/dragon(src) return diff --git a/code/modules/projectiles/ammunition/magazines.dm b/code/modules/projectiles/ammunition/magazines.dm index 390339609e5..42a9a49fa77 100644 --- a/code/modules/projectiles/ammunition/magazines.dm +++ b/code/modules/projectiles/ammunition/magazines.dm @@ -272,10 +272,10 @@ obj/item/ammo_box/magazine/tommygunm45 multiple_sprites = 2 /obj/item/ammo_box/magazine/m12g - name = "shotgun magazine (12g slugs)" + name = "shotgun magazine (12g taser slugs)" desc = "A drum magazine." - icon_state = "m12gb" - ammo_type = /obj/item/ammo_casing/shotgun + icon_state = "m12gs" + ammo_type = /obj/item/ammo_casing/shotgun/stunslug origin_tech = "combat=3;syndicate=1" caliber = "shotgun" max_ammo = 8 @@ -289,10 +289,10 @@ obj/item/ammo_box/magazine/tommygunm45 icon_state = "m12gb" ammo_type = /obj/item/ammo_casing/shotgun/buckshot -/obj/item/ammo_box/magazine/m12g/stun - name = "shotgun magazine (12g taser slugs)" - icon_state = "m12gs" - ammo_type = /obj/item/ammo_casing/shotgun/stunslug +/obj/item/ammo_box/magazine/m12g/slug + name = "shotgun magazine (12g slugs)" + icon_state = "m12gb" + ammo_type = /obj/item/ammo_casing/shotgun /obj/item/ammo_box/magazine/m12g/dragon name = "shotgun magazine (12g dragon's breath)" diff --git a/code/modules/projectiles/guns/projectile/shotgun.dm b/code/modules/projectiles/guns/projectile/shotgun.dm index 083746274de..adc787c0679 100644 --- a/code/modules/projectiles/guns/projectile/shotgun.dm +++ b/code/modules/projectiles/guns/projectile/shotgun.dm @@ -298,7 +298,7 @@ item_state = "bulldog" w_class = 3 origin_tech = "combat=5;materials=4;syndicate=6" - mag_type = /obj/item/ammo_box/magazine/m12g/stun + mag_type = /obj/item/ammo_box/magazine/m12g fire_sound = 'sound/weapons/Gunshot.ogg' can_suppress = 0 burst_size = 1 diff --git a/code/modules/uplink/uplink_item.dm b/code/modules/uplink/uplink_item.dm index 2dc032d0a85..948ade965b8 100644 --- a/code/modules/uplink/uplink_item.dm +++ b/code/modules/uplink/uplink_item.dm @@ -395,13 +395,13 @@ var/list/uplink_items = list() // Global list so we only initialize this once. desc = "An additional 8-round slug magazine for use with the Bulldog shotgun. \ Now 8 times less likely to shoot your pals." cost = 3 - item = /obj/item/ammo_box/magazine/m12g + item = /obj/item/ammo_box/magazine/m12g/slug /datum/uplink_item/ammo/shotgun/stun name = "12 Stun Slug Drum" desc = "An alternative 8-round stun slug magazine for use with the Bulldog shotgun. \ Saying that they're completely non-lethal would be lying." - item = /obj/item/ammo_box/magazine/m12g/stun + item = /obj/item/ammo_box/magazine/m12g include_modes = list(/datum/game_mode/nuclear) /datum/uplink_item/ammo/shotgun/dragon