From 4857bd120ca61e5afeb2c7c726583bf4428fe74e Mon Sep 17 00:00:00 2001 From: Ragolution Date: Fri, 6 Mar 2020 10:06:59 -0500 Subject: [PATCH] Fixes bartender drink slide spill Forces drink throw call to check for bartender throwing before spilling contents. Feels like a lazy fix, but it works. --- code/modules/reagents/reagent_containers.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index c9cfdde797..a8189f169f 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -156,7 +156,8 @@ if(QDELETED(src)) return - reagents.clear_reagents() + if (!bartender_check(target)) // Needs to check for Bartender Slide before spilling. + reagents.clear_reagents() // Clear reagents of thrown container. //melts plastic beakers /obj/item/reagent_containers/microwave_act(obj/machinery/microwave/M)