Fixed Rotation in Schematic Loader and Partially Overhauled Commands #32

Merged
SenseiKiwi merged 9 commits from master into master 2013-06-26 04:51:57 +00:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 6e3c93fa17 - Show all commits

View File

@@ -14,7 +14,7 @@ public class CommandDeleteAllLinks extends DDCommandBase
private CommandDeleteAllLinks() private CommandDeleteAllLinks()
{ {
super("dd-deletelinks"); super("dd-deletelinks", "FIXME");
} }
public static CommandDeleteAllLinks instance() public static CommandDeleteAllLinks instance()
@@ -80,5 +80,6 @@ public class CommandDeleteAllLinks extends DDCommandBase
sender.sendChatToPlayer("Removed " + linksRemoved + " links."); sender.sendChatToPlayer("Removed " + linksRemoved + " links.");
} }
} }
return DDCommandResult.SUCCESS; //TEMPORARY HACK
} }
} }

View File

@@ -14,7 +14,7 @@ public class CommandDeleteDimensionData extends DDCommandBase
private CommandDeleteDimensionData() private CommandDeleteDimensionData()
{ {
super("dd-deletedimension"); super("dd-deletedimension", "FIXME");
} }
public static CommandDeleteDimensionData instance() public static CommandDeleteDimensionData instance()
@@ -90,5 +90,6 @@ public class CommandDeleteDimensionData extends DDCommandBase
sender.sendChatToPlayer("Error- dimension "+targetDim+" not registered with dimDoors"); sender.sendChatToPlayer("Error- dimension "+targetDim+" not registered with dimDoors");
} }
} }
return DDCommandResult.SUCCESS; //TEMPORARY HACK
} }
} }

View File

@@ -15,7 +15,7 @@ public class CommandDeleteRifts extends DDCommandBase
private CommandDeleteRifts() private CommandDeleteRifts()
{ {
super("dd-???"); super("dd-???", "FIXME");
} }
public static CommandDeleteRifts instance() public static CommandDeleteRifts instance()
@@ -84,5 +84,6 @@ public class CommandDeleteRifts extends DDCommandBase
sender.sendChatToPlayer("Removed "+linksRemoved+" rifts."); sender.sendChatToPlayer("Removed "+linksRemoved+" rifts.");
} }
} }
return DDCommandResult.SUCCESS; //TEMPORARY HACK
} }
} }