Issue with placing chairs above y=255
True-Galaxy opened this issue · 5 comments
Versions of Minecraft, Fabric and Adorn
- Adorn: 3.5.0
- Minecraft: 1.18.2
- Fabric Loader: 0.14.8
- Fabric API: 0.57.0
Describe the bug
When trying to place any type of adorn chair at or anywhere above y=255, nothing happens.
To Reproduce
Steps to reproduce the behavior:
- Go above y=255
- Try to place any type of chair
- See error
Expected behavior
For the chair to be placed.
Thanks for reporting that, the culprit is this check from the 1.14 era:
It's probably copied from vanilla code from that time so it needs fixing for current MC versions.
Is it possible to compile the 1.18.2 version jar with this removed? The new height limit is 319. I tried doing it from the source code but I could not
I just replaced 255 with 319, rebuilt it, and it works perfectly.
Could you post that jar here please, I couldn't figure out how to rebuild it for fabric. I've never compiled code before