From 0b254678a077ad1dcf0aba437292004edb2e39b3 Mon Sep 17 00:00:00 2001 From: Arthri <41360489+Arthri@users.noreply.github.com> Date: Sat, 19 Jul 2025 01:24:25 +0800 Subject: [PATCH] Fix RPEDs delete beakers (#29788) Co-authored-by: Arthri <41360489+a@users.noreply.github.com> --- code/game/machinery/machinery.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index 21f173041ff..2dac0c993b3 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -440,7 +440,7 @@ if(B.reagents.maximum_volume <= A.reagents.maximum_volume) continue W.remove_from_storage(B, src) - W.handle_item_insertion(A, TRUE) + W.handle_item_insertion(A, user, TRUE) component_parts -= A component_parts += B B.loc = null