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.
This commit is contained in:
SenseiKiwi
2013-06-25 23:24:21 -04:00
parent 9e0fb946f2
commit 6e3c93fa17
3 changed files with 6 additions and 3 deletions

View File

@@ -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
}
}