From 499e0797be6927ca0e21ff15b602ec4233523b0f Mon Sep 17 00:00:00 2001 From: MrBauer24 Date: Sat, 16 May 2015 13:54:26 +0100 Subject: [PATCH] Biogenerator fix Fixes bug #1076 and displays a warning message telling the user that the beaker is full. --- code/game/machinery/biogenerator.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/biogenerator.dm b/code/game/machinery/biogenerator.dm index bf53df74ecf..b2455ab2aa4 100644 --- a/code/game/machinery/biogenerator.dm +++ b/code/game/machinery/biogenerator.dm @@ -134,7 +134,8 @@ dat += "
Error: No growns inside.
Please put growns into reactor.
" menustat = "menu" if("nobeakerspace") - dat += "
Not enough space left in container. Unable to create product.
" + // dat += "
Not enough space left in container. Unable to create product.
" + user << "Not enough space left in container. Unable to create product. Please empty container." menustat = "menu" if(beaker) dat += "
Biomass: [points] units.

"