No goto - tp

This commit is contained in:
Daniel Mills 2021-07-16 04:03:09 -04:00
parent 377a4c2284
commit 985979ab14
2 changed files with 1 additions and 10 deletions

View File

@ -40,7 +40,7 @@ import java.util.List;
public class CommandIrisStudioGoto extends MortarCommand {
public CommandIrisStudioGoto() {
super("goto", "find", "g", "tp");
super("goto", "find", "g");
setDescription("Find any region or biome");
requiresPermission(Iris.perm.studio);
setCategory("World");

View File

@ -40,10 +40,6 @@ public class InvertedBiomeGrid implements BiomeGrid {
@NotNull
@Override
public Biome getBiome(int arg0, int arg1, int arg2) {
if (!Iris.biome3d) {
return getBiome(arg0, arg2);
}
return grid.getBiome(arg0, 255 - arg1, arg2);
}
@ -55,11 +51,6 @@ public class InvertedBiomeGrid implements BiomeGrid {
@Override
public void setBiome(int arg0, int arg1, int arg2, @NotNull Biome arg3) {
if (!Iris.biome3d) {
setBiome(arg0, arg2, arg3);
return;
}
grid.setBiome(arg0, 255 - arg1, arg2, arg3);
}
}