redid commands, added more rotation support.

This commit is contained in:
StevenRS11
2013-06-12 17:59:34 -04:00
parent 2c09434e4c
commit b388a00e05
12 changed files with 216 additions and 28 deletions

View File

@@ -19,7 +19,7 @@ public class CommandAddDungeonRift extends CommandBase
{
public String getCommandName()//the name of our command
{
return "add_dungeon_rift";
return "dimdoors-genDungeonRift";
}

View File

@@ -16,7 +16,7 @@ public class CommandDeleteAllLinks extends CommandBase
{
public String getCommandName()//the name of our command
{
return "delete_all_links";
return "dimdoors-deleteLinksInDim";
}

View File

@@ -17,7 +17,7 @@ public class CommandDeleteDimData extends CommandBase
{
public String getCommandName()//the name of our command
{
return "delete_dim_data";
return "dimdoors-deleteDimData";
}

View File

@@ -16,7 +16,7 @@ public class CommandDeleteRifts extends CommandBase
{
public String getCommandName()//the name of our command
{
return "delete_rifts";
return "dimdoors-cleanupRifts";
}

View File

@@ -12,7 +12,7 @@ public class CommandEndDungeonCreation extends CommandBase
{
public String getCommandName()//the name of our command
{
return "end_dungeon_creation";
return "dimdoors-endDungeonCreation";
}

View File

@@ -17,7 +17,7 @@ public class CommandPrintDimData extends CommandBase
{
public String getCommandName()//the name of our command
{
return "print_dim_data";
return "dimdoors-printDimData";
}

View File

@@ -13,7 +13,7 @@ public class CommandPruneDims extends CommandBase
{
public String getCommandName()//the name of our command
{
return "prune_pocket_dims";
return "dimdoors-prunePockets";
}

View File

@@ -20,7 +20,7 @@ public class CommandStartDungeonCreation extends CommandBase
{
public String getCommandName()//the name of our command
{
return "start_dungeon_creation";
return "dimdoors-startDungeonCreation";
}
@Override