Draco18s / ReasonableRealism

For 1.10!
Other
17 stars 8 forks source link

Most non-player based methodes of block breaking do not play well with harder ores. #31

Open The-Arcanian opened 6 years ago

The-Arcanian commented 6 years ago

I have tried Thaumcraft's Arcane Bore, Thaumcraft's golems with a block breaker seal, Botania's bore lense, and Quark's piston block breaking. Only with the golems did the blocks behave like when a player broke them. All of the others would completely break the block regardless of meta value while only dropping items like when broken once by the player.

Minecraft 1.12.2 Forge 14.23.4.2739 HarderOres 6.0.0a

Draco18s commented 6 years ago

That is likely because those mods are incorrectly coded to handle block breaking. They assume that blocks--when broken--drop their drops and are then air. What they are likley doing is calling getDrops() and then setting the block to air without firing any block break or block harvest events.

i.e. I can't fix it on my end.

The-Arcanian commented 6 years ago

Ya, that was my suspicion. Looking at Botania, that is the way that it does it and I bet most use that shortcut due to most blocks not doing what your hard ores do (and there might be a performance component)... Probably nothing you can do from your end but this is the only time I remember encountering this problem.