Renamed and Moved Files

Moved CommonTickHandler into the ticking package in preparation for the
next change. Renamed CommandStartDungeonCreation to CommandCreatePocket,
since creation pockets of variable sizes will be its future role now
that it's not strictly necessary for exporting. Renamed
CommandEndDungeonCreation to CommandExportDungeon, since we no longer
have a dungeon creation process like before.
This commit is contained in:
SenseiKiwi
2013-07-26 02:09:14 -04:00
parent 03b727881a
commit bfc532da1f
9 changed files with 28 additions and 20 deletions

View File

@@ -4,19 +4,19 @@ import net.minecraft.entity.player.EntityPlayer;
import StevenDimDoors.mod_pocketDim.LinkData;
import StevenDimDoors.mod_pocketDim.helpers.DungeonHelper;
public class CommandStartDungeonCreation extends DDCommandBase
public class CommandCreatePocket extends DDCommandBase
{
private static CommandStartDungeonCreation instance = null;
private static CommandCreatePocket instance = null;
private CommandStartDungeonCreation()
private CommandCreatePocket()
{
super("dd-create", "");
}
public static CommandStartDungeonCreation instance()
public static CommandCreatePocket instance()
{
if (instance == null)
instance = new CommandStartDungeonCreation();
instance = new CommandCreatePocket();
return instance;
}

View File

@@ -6,21 +6,21 @@ import net.minecraft.entity.player.EntityPlayer;
import StevenDimDoors.mod_pocketDim.DDProperties;
import StevenDimDoors.mod_pocketDim.helpers.DungeonHelper;
public class CommandEndDungeonCreation extends DDCommandBase
public class CommandExportDungeon extends DDCommandBase
{
private static CommandEndDungeonCreation instance = null;
private static CommandExportDungeon instance = null;
private CommandEndDungeonCreation()
private CommandExportDungeon()
{
super("dd-export", new String[] {
"<dungeon type> <dungeon name> <'open' | 'closed'> [weight]",
"<schematic name> override" } );
}
public static CommandEndDungeonCreation instance()
public static CommandExportDungeon instance()
{
if (instance == null)
instance = new CommandEndDungeonCreation();
instance = new CommandExportDungeon();
return instance;
}