Update desc for debugpaste

This commit is contained in:
Jesse Boyd 2016-06-19 13:44:14 +10:00
parent 8512adf9d6
commit c2f10a7065
3 changed files with 3 additions and 7 deletions

View File

@ -15,7 +15,7 @@ import java.io.IOException;
@CommandDeclaration(command = "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",
category = CommandCategory.DEBUG)
public class DebugPaste extends SubCommand {

View File

@ -261,10 +261,6 @@ public class Settings extends Config {
public static boolean DISABLE_OFFLINE = false;
}
/*
END OF CONFIGURATION SECTION:
*/
public static final class Claim {
@Comment("The max plots claimed in a single `/plot auto <size>` command")
public static int MAX_AUTO_AREA = 4;

View File

@ -34,8 +34,8 @@ public class GenChunk extends ScopedLocalBlockQueue {
return;
}
BiomeType biome = SpongeUtil.getBiome(biomeName.toUpperCase());
for (int x = 0; x <= 15; x++) {
for (int z = 0; z < 15; z++) {
for (int x = 0; x < 16; x++) {
for (int z = 0; z < 16; z++) {
this.biome.setBiome(this.bx + x, this.bz + z, biome);
}
}