From 2d82b4022b0f6811797f82ec98207674256173ef Mon Sep 17 00:00:00 2001 From: Vi3trice Date: Sat, 22 Feb 2025 20:04:21 -0500 Subject: [PATCH] Surprisingly was missing that unlike other machinery --- code/modules/research/protolathe.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/research/protolathe.dm b/code/modules/research/protolathe.dm index 3bb2d514ce9f4..d0b4feac679db 100644 --- a/code/modules/research/protolathe.dm +++ b/code/modules/research/protolathe.dm @@ -57,7 +57,9 @@ Note: Must be placed west/left of and R&D console to function. /obj/machinery/r_n_d/protolathe/RefreshParts() var/T = 0 + reagents.maximum_volume = 0 for(var/obj/item/reagent_containers/glass/G in component_parts) + reagents.maximum_volume += G.reagents.maximum_volume G.reagents.trans_to(src, G.reagents.total_volume) for(var/obj/item/stock_parts/matter_bin/M in component_parts) T += M.rating