
crusher produces barrier blocks
ddarkpais1999 opened this issue ยท 3 comments
Describe the bug
The crusher produces barrier blocks when processing certain ores on the server.
To Reproduce
Steps to reproduce the behavior:
- Insert ies ore into the crusher.
- The crusher produces a barrier block.
System (please complete the following information):
- Occultism Version: 1.141.2
- OS: Windows 11
- Minecraft Version: 1.20.1
- Modpack Link and Version, or list of mods:
from #FAQ on the discord:
[Occultism/Theurgy] My recipes produce barrier blocks, or barriers show in JEI/EMI as recipe output
This is an adverse interaction between kubejs and occultism/theurgy due to my mods using tags as output to support materials that are not part of the mod but may occur in datapacks.
If you are on 1.21: Install Occultism KubeJS and/or Theurgy KubeJS
If you are on a lower MC version:
You can work around this by using the following kubejs script (place in server_scripts):
PlayerEvents.loggedIn(event => {
if (!global.occultism_reload) {
global.occultism_reload = true
event.server.runCommandSilent(`reload`)
}
});```