From 6e3c93fa17e3a6ede800a54ec7a564ce37ad4f21 Mon Sep 17 00:00:00 2001 From: SenseiKiwi Date: Tue, 25 Jun 2013 23:24:21 -0400 Subject: [PATCH] Temporary Fix to Commands Temporarily patched up CommandDeleteAllLinks, CommandDeleteDimensionData, and CommandDeleteRifts so they'll compile. I'll be fixing some things for Steven and I'll come back to those classes to finish overhauling them. --- .../mod_pocketDim/commands/CommandDeleteAllLinks.java | 3 ++- .../mod_pocketDim/commands/CommandDeleteDimensionData.java | 3 ++- StevenDimDoors/mod_pocketDim/commands/CommandDeleteRifts.java | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/StevenDimDoors/mod_pocketDim/commands/CommandDeleteAllLinks.java b/StevenDimDoors/mod_pocketDim/commands/CommandDeleteAllLinks.java index 0d27e8e..191424e 100644 --- a/StevenDimDoors/mod_pocketDim/commands/CommandDeleteAllLinks.java +++ b/StevenDimDoors/mod_pocketDim/commands/CommandDeleteAllLinks.java @@ -14,7 +14,7 @@ public class CommandDeleteAllLinks extends DDCommandBase private CommandDeleteAllLinks() { - super("dd-deletelinks"); + super("dd-deletelinks", "FIXME"); } public static CommandDeleteAllLinks instance() @@ -80,5 +80,6 @@ public class CommandDeleteAllLinks extends DDCommandBase sender.sendChatToPlayer("Removed " + linksRemoved + " links."); } } + return DDCommandResult.SUCCESS; //TEMPORARY HACK } } \ No newline at end of file diff --git a/StevenDimDoors/mod_pocketDim/commands/CommandDeleteDimensionData.java b/StevenDimDoors/mod_pocketDim/commands/CommandDeleteDimensionData.java index 7ba8f09..388e3db 100644 --- a/StevenDimDoors/mod_pocketDim/commands/CommandDeleteDimensionData.java +++ b/StevenDimDoors/mod_pocketDim/commands/CommandDeleteDimensionData.java @@ -14,7 +14,7 @@ public class CommandDeleteDimensionData extends DDCommandBase private CommandDeleteDimensionData() { - super("dd-deletedimension"); + super("dd-deletedimension", "FIXME"); } public static CommandDeleteDimensionData instance() @@ -90,5 +90,6 @@ public class CommandDeleteDimensionData extends DDCommandBase sender.sendChatToPlayer("Error- dimension "+targetDim+" not registered with dimDoors"); } } + return DDCommandResult.SUCCESS; //TEMPORARY HACK } } \ No newline at end of file diff --git a/StevenDimDoors/mod_pocketDim/commands/CommandDeleteRifts.java b/StevenDimDoors/mod_pocketDim/commands/CommandDeleteRifts.java index 7537371..d109d82 100644 --- a/StevenDimDoors/mod_pocketDim/commands/CommandDeleteRifts.java +++ b/StevenDimDoors/mod_pocketDim/commands/CommandDeleteRifts.java @@ -15,7 +15,7 @@ public class CommandDeleteRifts extends DDCommandBase private CommandDeleteRifts() { - super("dd-???"); + super("dd-???", "FIXME"); } public static CommandDeleteRifts instance() @@ -84,5 +84,6 @@ public class CommandDeleteRifts extends DDCommandBase sender.sendChatToPlayer("Removed "+linksRemoved+" rifts."); } } + return DDCommandResult.SUCCESS; //TEMPORARY HACK } } \ No newline at end of file