Skip to content

Commit

Permalink
[CORE] Make it Spigot and Paper Compatible
Browse files Browse the repository at this point in the history
Signed-off-by: Wolfieheart <[email protected]>
  • Loading branch information
Wolfieheart committed Dec 9, 2024
1 parent 7de1b78 commit e7e4200
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private void chooseSize(ArmorStand armorStand){
sendMessage("nopermoption", "warn", "size");
return;
} else {
if(plugin.getServer().getMinecraftVersion().compareTo("1.21") < 0){
if(plugin.getServer().getMinecraftVersion().compareTo("1.21") >= 0 || plugin.getNmsVersion().compareTo("v1_21") >= 0){
sizeModificationMenu = new SizeMenu(this, armorStand);
sizeModificationMenu.openMenu();
} else {
Expand Down

0 comments on commit e7e4200

Please sign in to comment.