From 40287a4574d0be5f61dfe5b9a6c18aef4099bfd9 Mon Sep 17 00:00:00 2001 From: Erthilo Date: Sat, 18 Aug 2012 18:28:52 +0100 Subject: [PATCH] Fixes virology incubator making chemicals out of nowhere. --- code/WorkInProgress/virus2/dishincubator.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/WorkInProgress/virus2/dishincubator.dm b/code/WorkInProgress/virus2/dishincubator.dm index e6d0da12394..955dbd75259 100644 --- a/code/WorkInProgress/virus2/dishincubator.dm +++ b/code/WorkInProgress/virus2/dishincubator.dm @@ -163,7 +163,7 @@ if(beaker) - if(!beaker.reagents.remove_reagent("virusfood",5)) + if(beaker.reagents.remove_reagent("virusfood",5)) foodsupply += 10 - if(!beaker.reagents.remove_reagent("toxins",1)) + if(beaker.reagents.remove_reagent("toxins",1)) toxins += 1 \ No newline at end of file