Skip to content

Commit

Permalink
gamechanger
Browse files Browse the repository at this point in the history
  • Loading branch information
NightDawnFox committed Dec 11, 2023
1 parent 44949be commit b618a24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mining/equipment/mining_charges.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b618a24

Please sign in to comment.