initial port to fabric 1.21.5

This port was inspired by the #4198 port for spigot 1.21.5 for the
NBT updates. Like that it also does not implement the new blocks.

Only light testing has been done, but it seems to work just as under
1.21.4 so far.

Note that gradle had to be updated to 8.12.
This commit is contained in:
Peter Svensson 2025-04-04 18:21:07 +02:00
parent 10e6739811
commit 802f62bc6a
47 changed files with 3977 additions and 1 deletions

View file

@ -35,6 +35,7 @@ include ':DynmapCore'
include ':DynmapCoreAPI'
include ':fabric-1.21.1'
include ':fabric-1.21.3'
include ':fabric-1.21.5'
include ':fabric-1.21'
include ':fabric-1.20.6'
include ':fabric-1.19.4'
@ -80,6 +81,7 @@ project(':DynmapCore').projectDir = "$rootDir/DynmapCore" as File
project(':DynmapCoreAPI').projectDir = "$rootDir/DynmapCoreAPI" as File
project(':fabric-1.21.1').projectDir = "$rootDir/fabric-1.21.1" as File
project(':fabric-1.21.3').projectDir = "$rootDir/fabric-1.21.3" as File
project(':fabric-1.21.5').projectDir = "$rootDir/fabric-1.21.5" as File
project(':fabric-1.21').projectDir = "$rootDir/fabric-1.21" as File
project(':fabric-1.20.6').projectDir = "$rootDir/fabric-1.20.6" as File
project(':fabric-1.19.4').projectDir = "$rootDir/fabric-1.19.4" as File