ModificationStation / StationAPI

A general use API for Fabric Loader mods on legacy Minecraft versions.
85 stars 19 forks source link

Blocks above 127 height don't have ticks #56

Closed paulevsGitch closed 1 year ago

paulevsGitch commented 1 year ago

Blocks above 127 height don't have ticks and will never be updated

2023-08-02_10 59 24

That issue can be related to how blocks are updated in chunk - they still uses vanilla logic (in Level.class):

image

It will be better if that logic will be switched to sections updates (there is hasRandomTicks method in sections, but it is never used), something like that. It will also fix some other things: cave sounds and snowing above 127

mineLdiver commented 1 year ago

Should be fixed. Reopen if not.