mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-23 10:35:18 +01:00
Configures the new v1_19_R3 NMS module in the NmsManager class
This commit is contained in:
parent
fafcf28e0b
commit
07374fdbfd
@ -147,6 +147,12 @@ public class NmsManager {
|
||||
nbt = new com.songoda.core.nms.v1_19_R2.nbt.NBTCoreImpl();
|
||||
world = new com.songoda.core.nms.v1_19_R2.world.WorldCoreImpl();
|
||||
break;
|
||||
case "v1_19_R3":
|
||||
player = new com.songoda.core.nms.v1_19_R3.entity.NMSPlayerImpl();
|
||||
anvil = new com.songoda.core.nms.v1_19_R3.anvil.AnvilCore();
|
||||
nbt = new com.songoda.core.nms.v1_19_R3.nbt.NBTCoreImpl();
|
||||
world = new com.songoda.core.nms.v1_19_R3.world.WorldCoreImpl();
|
||||
break;
|
||||
default:
|
||||
Logger.getLogger(NmsManager.class.getName()).log(Level.SEVERE, "Failed to load NMS for this server version: version {0} not found", serverPackageVersion);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user