From 03a4b91ad0e4e2f1fa1ad1ada8b83a76fd39ae3f Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 2 Dec 2015 03:47:05 +0000 Subject: [PATCH] Removes erroneous world.log line. --- code/modules/surgery/surgery.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/surgery/surgery.dm b/code/modules/surgery/surgery.dm index 2a760f1f28..f0ed31b2c4 100644 --- a/code/modules/surgery/surgery.dm +++ b/code/modules/surgery/surgery.dm @@ -90,7 +90,6 @@ proc/do_surgery(mob/living/carbon/M, mob/living/user, obj/item/tool) //check if tool is right or close enough and if this step is possible if(S.tool_quality(tool)) var/step_is_valid = S.can_use(user, M, zone, tool) - world.log << "Is Valid = [step_is_valid]" if(step_is_valid && S.is_valid_target(M)) if(step_is_valid == -1) // This is a failure that already has a message for failing. return 1