mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Update desc for debugpaste
This commit is contained in:
parent
8512adf9d6
commit
c2f10a7065
@ -15,7 +15,7 @@ import java.io.IOException;
|
|||||||
|
|
||||||
@CommandDeclaration(command = "debugpaste",
|
@CommandDeclaration(command = "debugpaste",
|
||||||
aliases = "dp", usage = "/plot debugpaste",
|
aliases = "dp", usage = "/plot debugpaste",
|
||||||
description = "Upload settings.yml & latest.log to HasteBin",
|
description = "Upload settings.yml, worlds.yml, commands.yml and latest.log to www.hastebin.com",
|
||||||
permission = "plots.debugpaste",
|
permission = "plots.debugpaste",
|
||||||
category = CommandCategory.DEBUG)
|
category = CommandCategory.DEBUG)
|
||||||
public class DebugPaste extends SubCommand {
|
public class DebugPaste extends SubCommand {
|
||||||
|
@ -261,10 +261,6 @@ public class Settings extends Config {
|
|||||||
public static boolean DISABLE_OFFLINE = false;
|
public static boolean DISABLE_OFFLINE = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
END OF CONFIGURATION SECTION:
|
|
||||||
*/
|
|
||||||
|
|
||||||
public static final class Claim {
|
public static final class Claim {
|
||||||
@Comment("The max plots claimed in a single `/plot auto <size>` command")
|
@Comment("The max plots claimed in a single `/plot auto <size>` command")
|
||||||
public static int MAX_AUTO_AREA = 4;
|
public static int MAX_AUTO_AREA = 4;
|
||||||
|
@ -34,8 +34,8 @@ public class GenChunk extends ScopedLocalBlockQueue {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
BiomeType biome = SpongeUtil.getBiome(biomeName.toUpperCase());
|
BiomeType biome = SpongeUtil.getBiome(biomeName.toUpperCase());
|
||||||
for (int x = 0; x <= 15; x++) {
|
for (int x = 0; x < 16; x++) {
|
||||||
for (int z = 0; z < 15; z++) {
|
for (int z = 0; z < 16; z++) {
|
||||||
this.biome.setBiome(this.bx + x, this.bz + z, biome);
|
this.biome.setBiome(this.bx + x, this.bz + z, biome);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user