green raptors no longer mine activated gibtonite (#87290)

## About The Pull Request
green raptors will now refuse to mine mineral walls containing active
gibtonite

## Why It's Good For The Game
this was leading to a significant number of unfortunate accidents and
frustrations from what ive seen, making them almost not worth using.

## Changelog
🆑
balance: green raptors now refuse to mine mineral walls containing
active gibtonite
/🆑
This commit is contained in:
Ben10Omintrix
2024-10-20 17:10:42 +02:00
committed by GitHub
parent 6c554dd45f
commit 2db693f8e0
+10 -1
View File
@@ -12,7 +12,16 @@
if(!ismineralturf(target))
return
var/turf/closed/mineral/mineral_wall = target
mineral_wall.gets_drilled(source)
if(!istype(mineral_wall, /turf/closed/mineral/gibtonite))
mineral_wall.gets_drilled(source)
return
var/turf/closed/mineral/gibtonite/gibtonite_wall = mineral_wall
if(gibtonite_wall.stage == GIBTONITE_UNSTRUCK)
mineral_wall.gets_drilled(source)
/datum/element/proficient_miner/Detach(datum/source, ...)
UnregisterSignal(source, COMSIG_MOVABLE_BUMP)