From 34a6960ef11c68e6950ecb3f4e0ae8dc75692338 Mon Sep 17 00:00:00 2001 From: TullyBurnalot Date: Wed, 6 Jul 2016 19:50:47 +0100 Subject: [PATCH] Removes 2 extra parenthesis What the title says. --- code/game/machinery/iv_drip.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 0fb74bc68ad..2c1f4cb0059 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -132,7 +132,7 @@ update_icon() /obj/machinery/iv_drip/attack_hand(mob/user as mob) - if((get_dist(src, user) > 1)) + if(get_dist(src, user) > 1) return //stops the AI from removing beakers, still allows borgs if(src.beaker) src.beaker.loc = get_turf(src)