mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 02:36:59 +00:00
Fixes
This commit is contained in:
parent
563bf12de0
commit
e0a60e3ef3
@ -18,7 +18,7 @@ public class CommandIrisStructure extends MortarCommand
|
|||||||
private CommandIrisStructureSave save;
|
private CommandIrisStructureSave save;
|
||||||
|
|
||||||
@Command
|
@Command
|
||||||
private CommandIrisStructureMore more;
|
private CommandIrisStructureMove more;
|
||||||
|
|
||||||
@Command
|
@Command
|
||||||
private CommandIrisStructureExpand expand;
|
private CommandIrisStructureExpand expand;
|
||||||
|
@ -8,11 +8,11 @@ import com.volmit.iris.structure.StructureTemplate;
|
|||||||
import com.volmit.iris.util.MortarCommand;
|
import com.volmit.iris.util.MortarCommand;
|
||||||
import com.volmit.iris.util.MortarSender;
|
import com.volmit.iris.util.MortarSender;
|
||||||
|
|
||||||
public class CommandIrisStructureMore extends MortarCommand
|
public class CommandIrisStructureMove extends MortarCommand
|
||||||
{
|
{
|
||||||
public CommandIrisStructureMore()
|
public CommandIrisStructureMove()
|
||||||
{
|
{
|
||||||
super("more", "++");
|
super("move", "++");
|
||||||
requiresPermission(Iris.perm);
|
requiresPermission(Iris.perm);
|
||||||
setCategory("Structure");
|
setCategory("Structure");
|
||||||
setDescription("Load more of the structure");
|
setDescription("Load more of the structure");
|
||||||
@ -43,7 +43,7 @@ public class CommandIrisStructureMore extends MortarCommand
|
|||||||
}
|
}
|
||||||
|
|
||||||
m.more();
|
m.more();
|
||||||
sender.sendMessage("Loading More!");
|
sender.sendMessage("Moving Structure Builder!");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
@ -17,7 +17,7 @@ public class CommandIrisStudioGoto extends MortarCommand
|
|||||||
{
|
{
|
||||||
public CommandIrisStudioGoto()
|
public CommandIrisStudioGoto()
|
||||||
{
|
{
|
||||||
super("goto", "find");
|
super("goto", "find", "g", "tp");
|
||||||
setDescription("Find any biome or a biome border");
|
setDescription("Find any biome or a biome border");
|
||||||
requiresPermission(Iris.perm.studio);
|
requiresPermission(Iris.perm.studio);
|
||||||
setCategory("World");
|
setCategory("World");
|
||||||
|
@ -27,7 +27,7 @@ public class CommandIrisStudioPackage extends MortarCommand
|
|||||||
|
|
||||||
if(args.length == 0)
|
if(args.length == 0)
|
||||||
{
|
{
|
||||||
sender.sendMessage("/iris std package <DIMENSION> [-o]");
|
sender.sendMessage("/iris std package <DIMENSION> [-o] [-m]");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ public class CommandIrisStudioUpdate extends MortarCommand
|
|||||||
{
|
{
|
||||||
public CommandIrisStudioUpdate()
|
public CommandIrisStudioUpdate()
|
||||||
{
|
{
|
||||||
super("update", "upd");
|
super("update", "upd", "u");
|
||||||
requiresPermission(Iris.perm.studio);
|
requiresPermission(Iris.perm.studio);
|
||||||
setDescription("Update your dimension project.");
|
setDescription("Update your dimension project.");
|
||||||
setCategory("Studio");
|
setCategory("Studio");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user