From 8abbd1976f97c2f63f5fe52bc69dbae30cf4c409 Mon Sep 17 00:00:00 2001 From: monster860 Date: Sun, 3 Feb 2019 10:50:00 -0500 Subject: [PATCH] Update rdconsole.dm --- code/modules/research/rdconsole.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index d9ac8e846d55..08d95d667c2d 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -382,7 +382,7 @@ Nothing else in the console has ID requirements. l += "

Material Storage:

" for(var/mat_id in mat_container.materials) var/datum/material/M = mat_container.materials[mat_id] - l += "* [M.amount] of [M.name]: " + l += "* [num2text(M.amount, 8)] of [M.name]: " // yogs - num2text if(M.amount >= MINERAL_MATERIAL_AMOUNT) l += "Eject [RDSCREEN_NOBREAK]" if(M.amount >= MINERAL_MATERIAL_AMOUNT*5) l += "5x [RDSCREEN_NOBREAK]" if(M.amount >= MINERAL_MATERIAL_AMOUNT) l += "All[RDSCREEN_NOBREAK]"