Fixed typo for nms logic

This commit is contained in:
PretzelJohn 2021-06-27 10:20:12 -04:00
parent fff230d85d
commit 4c12bb4bda
4 changed files with 3 additions and 4 deletions

View File

@ -7,7 +7,6 @@ import com.pretzel.dev.villagertradelimiter.lib.Util;
import com.pretzel.dev.villagertradelimiter.listeners.PlayerListener;
import org.bukkit.ChatColor;
import org.bukkit.configuration.file.FileConfiguration;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;

View File

@ -18,7 +18,7 @@ public class NBTContainer {
final CraftEntity craftEntity = new CraftEntity(nms);
final NMSEntity nmsEntity = new NMSEntity(nms);
final Class<?> tgc;
if(nms.getVersion().compareTo("v1.17_R1") < 0)
if(nms.getVersion().compareTo("v1_17_R1") < 0)
tgc = nms.getNMSClass("server."+nms.getVersion()+".NBTTagCompound");
else
tgc = nms.getNMSClass("nbt.NBTTagCompound");

View File

@ -11,7 +11,7 @@ public class NBTTagList
public NBTTagList(final NMS nms, final Object self) {
this.nms = nms;
this.self = self;
if(nms.getVersion().compareTo("v1.17_R1") < 0)
if(nms.getVersion().compareTo("v1_17_R1") < 0)
this.c = nms.getNMSClass("server."+nms.getVersion()+".NBTTagList");
else
this.c = nms.getNMSClass("nbt.NBTTagList");

View File

@ -8,7 +8,7 @@ public class NMSEntity {
public NMSEntity(final NMS nms) {
this.nms = nms;
if(nms.getVersion().compareTo("v1.17_R1") < 0)
if(nms.getVersion().compareTo("v1_17_R1") < 0)
this.c = nms.getNMSClass("server."+nms.getVersion()+".Entity");
else
this.c = nms.getNMSClass("world.entity.Entity");