Merge pull request #4329 from VOREStation/upstream-merge-5638

[MIRROR] Fixes chem master dumping reagents.
This commit is contained in:
Spades
2018-10-09 17:06:11 -04:00
committed by GitHub
+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)