3.19.1.2 patch 1

This commit is contained in:
rockyhawk64 2023-08-13 16:34:12 +10:00
parent b5d3a9b5c6
commit d9fb7080f4
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ config:
refresh-panels: true refresh-panels: true
refresh-delay: 20 refresh-delay: 20
panel-blocks: true panel-blocks: true
ingame-editor: true
hotbar-items: true hotbar-items: true
custom-commands: true custom-commands: true
auto-register-commands: false auto-register-commands: false

View File

@ -65,7 +65,7 @@ public class Commandpanelblocks implements CommandExecutor {
} }
//make the material name look okay //make the material name look okay
String coordinates = blockLocation.getBlockX() + ", " + blockLocation.getBlockY() + ", " + blockLocation.getBlockZ(); String coordinates = blockLocation.getBlockX() + ", " + blockLocation.getBlockY() + ", " + blockLocation.getBlockZ();
sender.sendMessage(plugin.tex.colour(plugin.tag + ChatColor.WHITE + args[1] + ChatColor.GREEN + "will now open when right clicking a block in the coordinates " + ChatColor.WHITE + coordinates)); sender.sendMessage(plugin.tex.colour(plugin.tag + ChatColor.WHITE + args[1] + ChatColor.GREEN + " will now open when right clicking a block in the coordinates " + ChatColor.WHITE + coordinates));
}else{ }else{
sender.sendMessage(plugin.tex.colour(plugin.tag + plugin.config.getString("config.format.perms"))); sender.sendMessage(plugin.tex.colour(plugin.tag + plugin.config.getString("config.format.perms")));
} }