Uses vial as chem pool.

This commit is contained in:
shellspeed1
2021-10-31 01:28:49 -07:00
parent 56fcd2dc9f
commit 7166ead8bd
2 changed files with 6 additions and 1 deletions
@@ -35,7 +35,11 @@
var/obj/item/gun/chem/CG = loc
if(CG.syringes_left <= 0)
return
CG.reagents.trans_to(BB, 10)
//vial.reagents.trans_to(target, vial.amount_per_transfer_from_this, log = "hypospray fill")
//CG.reagents.trans_to(BB, 10)
if (CG.vial == null)
return
CG.vial.reagents.trans_to(BB,10)
BB.name = "chemical dart"
CG.syringes_left--
..()