AllenSeitz / DimDungeons

A Minecraft mod which adds proceedurally generated dungeons.
14 stars 11 forks source link

compat with mining gadgets #5

Closed zzyzzyzzx closed 3 years ago

zzyzzyzzx commented 4 years ago

in your dungeons you can not break blocks, this is bypassed by mining gadgets though, not sure if its on your end or their end

AllenSeitz commented 4 years ago

Thank you for the report! In the case of Building Gadgets it was a bug on their end. So I suspect the same will be true of Mining Gadgets too. My custom dimension overrides canMineBlock() and causes it to return false most of the time. Other mods should check for this and respect it.

To be fair, I think Dimensional Dungeons is the first and only 1.14 mod to override this function. This function exists in vanilla but it is literally just { return true; }. So no mod author would be expecting that.