
Feature: Modular Routers compat
Raidobw2 opened this issue ยท 3 comments
I would like to see if compatibility for Modular Routers can be added. https://www.curseforge.com/minecraft/mc-mods/modular-routers
Currently the breaker module turns the blocks into air
Relayed from FTBTeam/FTB-Modpack-Issues#1062 and will shortly report to Modular Routers as well, see below for the linked issue
Thanks for reading my suggestion :)
The fundamental problem here is that Bedrock Ores relies on IForgeBlock#onDestroyedByPlayer()
being called, which only occurs as a result of a ServerBoundPlayerActionPacket
being received from a client. This does not happen when a block breaker type mod (like Modular Routers and its Breaker Module) breaks blocks purely server side, so your blocks don't get regenerated.
So this isn't just a Modular Routers compatibility question; it's about playing nice with any server-sided block breaker.