diff --git a/resource/plugin.yml b/resource/plugin.yml index 441f580..e8faa25 100644 --- a/resource/plugin.yml +++ b/resource/plugin.yml @@ -1,4 +1,4 @@ -version: 3.17.6.0 +version: 3.17.5.0 main: me.rockyhawk.commandpanels.CommandPanels name: CommandPanels author: RockyHawk diff --git a/src/me/rockyhawk/commandpanels/commands/Commandpanel.java b/src/me/rockyhawk/commandpanels/commands/Commandpanel.java index db4426b..792f12f 100644 --- a/src/me/rockyhawk/commandpanels/commands/Commandpanel.java +++ b/src/me/rockyhawk/commandpanels/commands/Commandpanel.java @@ -22,7 +22,7 @@ public class Commandpanel implements CommandExecutor { //below is going to go through the files and find the right one Panel panel = null; if (args.length != 0) { //check to make sure the person hasn't just left it empty - for(Panel tempPanel : plugin.panelList){ + for(Panel tempPanel : plugin.panelList){ if(tempPanel.getName().equals(args[0])) { panel = tempPanel; break;