From 3242555b839e3ad656430d7ed9b22a3377082e99 Mon Sep 17 00:00:00 2001 From: DeityLink Date: Sun, 11 Jul 2021 22:17:06 +0200 Subject: [PATCH] Fixes splashing full containers on dispensers (#29968) --- code/modules/reagents/reagent_containers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index 92091b708ef..85a3ed2f480 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -246,7 +246,7 @@ var/list/LOGGED_SPLASH_REAGENTS = list(FUEL, THERMITE) var/tx_amount = transfer_sub(target, src, S.amount_per_transfer_from_this, user) if (tx_amount > 0) to_chat(user, "You fill \the [src][src.is_full() ? " to the brim" : ""] with [tx_amount] units of the contents of \the [target].") - return tx_amount + return tx_amount // Transfer to container if (can_send /*&& target.reagents**/) var/obj/container = target