Merge pull request #5638 from lbnesquik/Kates-Chemistry-Fix

Fixes chem master dumping reagents.
This commit is contained in:
Anewbe
2018-10-07 16:44:17 -04:00
committed by VirgoBot
parent 8c2e0928fa
commit e1e5109c42
+2 -2
View File
@@ -31,8 +31,8 @@
/obj/machinery/chem_master/New()
..()
var/datum/reagents/R = new/datum/reagents(120)
reagents = R
var/datum/reagents/R = new/datum/reagents(900) //Just a huge random number so the buffer should (probably) never dump your reagents.
reagents = R //There should be a nano ui thingy to warn of this.
R.my_atom = src
/obj/machinery/chem_master/ex_act(severity)