From c552335bd9edce3d65469ace90b5d6c8013dfca9 Mon Sep 17 00:00:00 2001 From: dovydas12345 <37041561+dovydas12345@users.noreply.github.com> Date: Fri, 9 Nov 2018 20:55:57 +0200 Subject: [PATCH] Removes the unneeded check --- code/modules/hydroponics/grown.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index d4688fd81e8..88ac251b91d 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -60,7 +60,7 @@ /obj/item/reagent_containers/food/snacks/grown/attackby(obj/item/O, mob/user, params) ..() - if(slices_num && slices_num >0 && slice_path) + if(slices_num && slice_path) var/inaccurate = TRUE if(O.sharp) if(istype(O, /obj/item/kitchen/knife) || istype(O, /obj/item/scalpel))