Skip to content

Commit

Permalink
Forgot I moved this around on the main drill
Browse files Browse the repository at this point in the history
  • Loading branch information
BogCreature committed Nov 16, 2023
1 parent 9c80491 commit 11222bc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion code/modules/overmap/missions/drill_mission.dm
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,16 @@
if(mining.mining_charges)
mining.mining_charges--
num_current++
start_mining()
if(mining.mining_charges < 1)
say("Vein depleted.")
active = FALSE
soundloop.stop()
mining.deconstruct()
mining = null
update_icon_state()
update_overlays()
else
start_mining()
else if(!mining.mining_charges)
say("Error: Vein Depleted")
active = FALSE
Expand Down

0 comments on commit 11222bc

Please sign in to comment.