feat: Compile v1_21_R1 nms module with Spigot 1.21.1 for compatibility

This commit is contained in:
Christian Koop 2024-08-11 10:39:45 +02:00
parent 91a92bc10b
commit 97a9e5f6e8
No known key found for this signature in database
GPG Key ID: 6A4A09E8ED946113
4 changed files with 4 additions and 3 deletions

View File

@ -56,7 +56,7 @@ runs:
- uses: SpraxDev/Action-SpigotMC@v5
with:
versions: 1.20.6, 1.21
versions: 1.20.6, 1.21.1
remapped: true
sftpCacheHost: ${{ inputs.spigot_buildtools_sftp_host }}
sftpCachePort: ${{ inputs.spigot_buildtools_sftp_port }}

View File

@ -78,6 +78,7 @@ public enum ServerVersion {
VERSION_TO_REVISION.put("1.20.5", "v1_20_R4");
VERSION_TO_REVISION.put("1.20.6", "v1_20_R4");
VERSION_TO_REVISION.put("1.21", "v1_21_R1");
VERSION_TO_REVISION.put("1.21.1", "v1_21_R1");
if (Bukkit.getServer() != null) {
String srvPackage = Bukkit.getServer().getClass().getPackage().getName();

View File

@ -16,7 +16,7 @@
<java.version>21</java.version>
<java.release>21</java.release>
<nms.ver>1.21-R0.1-SNAPSHOT</nms.ver>
<nms.ver>1.21.1-R0.1-SNAPSHOT</nms.ver>
</properties>
<build>

View File

@ -10,7 +10,7 @@ public class AnvilInventoryCustom extends CraftInventoryAnvil {
final InventoryHolder holder;
public AnvilInventoryCustom(InventoryHolder holder, Location location, Container inventory, Container resultInventory, AnvilMenu container) {
super(location, inventory, resultInventory, container);
super(location, inventory, resultInventory);
this.holder = holder;
}