From b618a2459ddd1d2afedeeb38a6bc1ae3243884c1 Mon Sep 17 00:00:00 2001 From: NightDawnFox <116907157+NightDawnFox@users.noreply.github.com> Date: Mon, 11 Dec 2023 19:33:40 +0500 Subject: [PATCH] gamechanger --- code/modules/mining/equipment/mining_charges.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mining/equipment/mining_charges.dm b/code/modules/mining/equipment/mining_charges.dm index a7a48433c7a..d42974b50ab 100644 --- a/code/modules/mining/equipment/mining_charges.dm +++ b/code/modules/mining/equipment/mining_charges.dm @@ -79,9 +79,9 @@ var/distance = get_dist_euclidian(location,rock) if(distance <= boom_sizes[1]) //all this will be needed later on rock.gets_drilled(null,TRUE,3) - else if (distance <= boom_sizes[2]) + else if(distance <= boom_sizes[2]) rock.gets_drilled(null,TRUE,2) - else if (distance <= boom_sizes[3]) + else if(distance <= boom_sizes[3]) rock.gets_drilled(null,TRUE,1) for(var/mob/living/carbon/C in circlerange(location,boom_sizes[3])) if(ishuman(C)) //working on everyone