From f9056bcda15e97f0142145abaadd21d45e061ff6 Mon Sep 17 00:00:00 2001 From: CocaColaTastesGood <47264839+CocaColaTastesGood@users.noreply.github.com> Date: Sun, 5 Jun 2022 20:27:42 -0700 Subject: [PATCH] Fixes stack multiplier exploit (#67514) ye --- code/game/objects/items/stacks/stack.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index c98ab48efcf..ef097aa51b6 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -357,7 +357,7 @@ return if(!is_valid_recipe(recipe, recipes)) //href exploit protection return - if(!multiplier || (multiplier <= 0)) //href exploit protection + if(!multiplier || multiplier < 1) //href exploit protection return if(!building_checks(builder, recipe, multiplier)) return