From 4b7fff2277c01e7cddbeaafa68ec8ab98beab893 Mon Sep 17 00:00:00 2001 From: Tobias Ottenweller Date: Fri, 17 May 2013 20:53:36 +0200 Subject: [PATCH] Fixed some typos --- plugin.yml | 2 +- src/de/craftinc/gates/commands/CommandCreate.java | 2 +- src/de/craftinc/gates/commands/CommandInfo.java | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugin.yml b/plugin.yml index 8add6bb..c17e863 100644 --- a/plugin.yml +++ b/plugin.yml @@ -1,5 +1,5 @@ name: Craft Inc. Gates -version: 2.1.1 +version: 2.1.2 description: A plugin to create gates for fast traveling. softdepend: [Vault] author: tomco, s1m0ne diff --git a/src/de/craftinc/gates/commands/CommandCreate.java b/src/de/craftinc/gates/commands/CommandCreate.java index f441037..d39c481 100644 --- a/src/de/craftinc/gates/commands/CommandCreate.java +++ b/src/de/craftinc/gates/commands/CommandCreate.java @@ -42,7 +42,7 @@ public class CommandCreate extends BaseLocationCommand } catch (Exception e) { - sendMessage(ChatColor.RED + "Creating the gate failed!" + e.getMessage() + "See server log for more information"); + sendMessage(ChatColor.RED + "Creating the gate failed!" + e.getMessage() + " See server log for more information"); return; } diff --git a/src/de/craftinc/gates/commands/CommandInfo.java b/src/de/craftinc/gates/commands/CommandInfo.java index 29f75c8..22bb6a5 100644 --- a/src/de/craftinc/gates/commands/CommandInfo.java +++ b/src/de/craftinc/gates/commands/CommandInfo.java @@ -18,7 +18,7 @@ public class CommandInfo extends BaseCommand requiredParameters.add("id"); - helpDescription = "Prints detailed informations about a certain gate."; + helpDescription = "Print detailed informations about a certain gate."; requiredPermission = Plugin.permissionInfo; @@ -49,12 +49,12 @@ public class CommandInfo extends BaseCommand if (gate.getLocation() != null) sendMessage(ChatColor.DARK_AQUA + "from: " + ChatColor.AQUA + "( " + gate.getLocation().getBlockX() + " | " + gate.getLocation().getBlockY() + " | " + gate.getLocation().getBlockZ() + " ) in " + gate.getLocation().getWorld().getName()); else - sendMessage(ChatColor.DARK_AQUA + "NOTE: this gate has no 'from' location"); + sendMessage(ChatColor.DARK_AQUA + "NOTE: this gate has no location"); if (gate.getExit() != null) sendMessage(ChatColor.DARK_AQUA + "to: " + ChatColor.AQUA + "( " + gate.getExit().getBlockX() + " | " + gate.getExit().getBlockY() + " | " + gate.getExit().getBlockZ() + " ) in " + gate.getExit().getWorld().getName()); else - sendMessage(ChatColor.DARK_AQUA + "NOTE: this gate has no 'to' location"); + sendMessage(ChatColor.DARK_AQUA + "NOTE: this gate has no exit"); } }