From 1446dd936aca263b264d6027f6998cce6099b11e Mon Sep 17 00:00:00 2001 From: "Justin F." Date: Fri, 16 May 2014 23:17:33 -0400 Subject: [PATCH] Corrected command example to proper command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tiny usage error here – I noticed it on my server and figured I'd make a pull request for this minor error. :) --- .../com/onarandombox/MultiverseCore/commands/DeleteCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java index 05ada3a8..a37bcd11 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java @@ -27,7 +27,7 @@ public class DeleteCommand extends MultiverseCommand { this.setArgRange(1, 1); this.addKey("mvdelete"); this.addKey("mv delete"); - this.addCommandExample("/mv create " + ChatColor.GOLD + "MyWorld"); + this.addCommandExample("/mv delete " + ChatColor.GOLD + "MyWorld"); this.setPermission("multiverse.core.delete", "Deletes a world on your server. " + ChatColor.RED + "PERMANENTLY.", PermissionDefault.OP); }