Game crashes when using with SubTick
xwillq opened this issue ยท 1 comments
Version
Minecraft: 1.19.4
Lithium: lithium-fabric-mc1.19.4-0.11.1
SubTick: 1.0.11
Reproduction Steps
- Place hopper
- Run
/tick freeze
- Run
/queueStep blockEntity
- Game crashes or freezes
mixin.world.block_entity_ticking.sleeping.hopper
must be set to true
.
I believe can be reproduced anywhere, I tested this in fresh superflat world with void template.
Crash Report File
Additional Information
When performing queueStep blockEntity
, SubTick gets positions of block from net.minecraft.server.level.ServerLevel::blockEntityTickers
and for some reason hoppers return position null
. I'm not sure if this is intended behavior or bug, since Lithium config disables this. If this is a bug, it might break a lot more mods than just SubTick.
Here is the issue in SubTick repo I opened before looking into Lithium configs and source: lntricate1/SubTick#7