From 973d471dd42b0514740d70c88fac7e929fbbbc3e Mon Sep 17 00:00:00 2001 From: shellspeed1 Date: Sun, 31 Oct 2021 05:04:08 -0700 Subject: [PATCH] woopsie --- .../projectiles/ammunition/special/syringe.dm | 12 ++++++------ code/modules/projectiles/guns/misc/chem_gun.dm | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/projectiles/ammunition/special/syringe.dm b/code/modules/projectiles/ammunition/special/syringe.dm index 67d1dbe137..7a26645e9d 100644 --- a/code/modules/projectiles/ammunition/special/syringe.dm +++ b/code/modules/projectiles/ammunition/special/syringe.dm @@ -38,7 +38,7 @@ if (CG.vial == null) CG.syringes_left-- return - CG.vial.reagents.trans_to(BB, 10) + CG.vial.reagents.trans_to(BB,10) BB.name = "chemical dart" CG.syringes_left-- ..() @@ -48,23 +48,23 @@ name = "smartdart synthesiser" desc = "A high-power spring, linked to an energy-based smartdart synthesiser." projectile_type = /obj/item/projectile/bullet/dart/syringe/dart + firing_effect_type = null harmful = FALSE -/obj/item/ammo_casing/chemgun/ready_proj(atom/target, mob/living/user, quiet, zone_override = "") +/obj/item/ammo_casing/chemgun/smart/ready_proj(atom/target, mob/living/user, quiet, zone_override = "") if(!BB) return - if(istype(loc, /obj/item/gun/chem)) - var/obj/item/gun/chem/CG = loc + if(istype(loc, /obj/item/gun/chem/smart)) + var/obj/item/gun/chem/smart/CG = loc if(CG.syringes_left <= 0) return if (CG.vial == null) CG.syringes_left-- return - CG.vial.reagents.trans_to(BB, 20) + CG.vial.reagents.trans_to(BB,20) BB.name = "smart chemical dart" CG.syringes_left-- ..() - /obj/item/ammo_casing/dnainjector name = "rigged syringe gun spring" desc = "A high-power spring that throws DNA injectors." diff --git a/code/modules/projectiles/guns/misc/chem_gun.dm b/code/modules/projectiles/guns/misc/chem_gun.dm index d9ac2a7064..9b2f5df530 100644 --- a/code/modules/projectiles/guns/misc/chem_gun.dm +++ b/code/modules/projectiles/guns/misc/chem_gun.dm @@ -110,7 +110,7 @@ //Smart dart version of the reagent launcher /obj/item/gun/chem/smart name = "smartdart repeater rifle" - desc = "An experimental version of the repeater rifle. It synthesizes medicinal smart darts which it fills using an inserted hypovial. It can accommodate both large and small hypovials." + desc = "An experimental improved version of the smart dart rifle. It synthesizes medicinal smart darts which it fills using an inserted hypovial. It can accommodate both large and small hypovials." icon_state = "chemgun" item_state = "chemgun"