* Add the bundled data files
* feat: add 1.21.4 adapter
* Update the XTypes/XCategories files
Co-authored-by: Maddy Miller <mnmiller1@me.com>
* chore/fix: update isFullCube to actually check for shape not occlusion
* chore: remove forget packet
* chore: add block connection fixer to adapter
---------
Co-authored-by: Maddy Miller <mnmiller1@me.com>
* feat: implement command to fix block connections
- closes#313
* set SETUP to true on setup
* Add (untested) processing capability and second passes where appropriate
* Minor refactor, add various javadocs
* Minor adjustments
* Better chest handling
* Utilise thread extends when able
* Add strings, changes to fastmode/side effect handling
* Cleanup
* Add for 1.21
* Adjustment for tall flowers - add capability to forcefully override block updates
* Move to Fawe/LinTag
* fix: adjustments, fix certain upside-down blocks
* Add for 1.21.3
* chore: update isFullCube to actually check for shape not occlusion
* chore/fix: fix and update snow simulator
* chore: consistent property field naming
* fix: some improvements to GET chunk writing
- ensure levelChunk is loaded before giving to copy GET - this is not necessarily guaranteed to be nonnull if two edits overlap. Whilst not advised, such an easy failure should not occur when two edits collide
* Prevent writing chunk sections when FAWE is also sending packets for a chunk and vice versa
- alter IntPair hashcode to be more often unique
- Utilise ConcurrentHashMap for free synchronisation
* Minor comment changes
* Use one-per-world-instance FaweBukkitWorld to store world chunk map
* feat: implement 1.21
* fix: adjust mojang mapped field name in ChunkMap
* Fix property cache
---------
Co-authored-by: Pierre Maurice Schwang <mail@pschwang.eu>
* Add a BiomeCategories API (#2338)
* Add a BiomeCategories API
* licenses
* Use a supplier to retain the lazy-load & dynamicness of the existing system, but still retaining the inversion of control that this PR was intended to provide
* Minor fawe adapter cleanup
* Actually add the new files?
* Fixes
---------
Co-authored-by: Maddy Miller <mnmiller1@me.com>
* fix: improve biome setting to avoid writing directly to chunk
- Removes possibility of writing to the LevelChunkSection biomes PalettedContainer whilst it is being read for sending packets
- I believe this occured mostly on clipboard operations where blocks are written before biomes, so chunks are being sent whilst writing biomes
- This would explain why the error reported in the below issue (and others) is/was so rare
- Of course I could be completely wrong about all of this, but given the line in LevelChunkSection#write that the error seems to consistently occur on is when writing biomes to the packet, and that the only place I can find in FAWE where we write to a "live" PalettedContainer is for biomes, I am reasonably confident that this is the cause
- Should address #2729
* Remove self-refraction-check