mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
Fix :D
This commit is contained in:
parent
ee89e9cb2e
commit
e7f9030757
2 changed files with 2 additions and 1 deletions
|
@ -194,7 +194,7 @@ public class MainCommand implements CommandExecutor, TabCompleter {
|
|||
|
||||
help.add(s);
|
||||
|
||||
if ((x != start) && (x != (max - 1))) {
|
||||
if ((x != start)) {
|
||||
help.add(t(C.HELP_ITEM_SEPARATOR.s().replaceAll("%lines", lines)));
|
||||
}
|
||||
|
||||
|
|
|
@ -228,6 +228,7 @@ public class Set extends SubCommand {
|
|||
sendMessage(plr, C.NAME_LITTLE, "Biome", args[1].length() + "", "2");
|
||||
return true;
|
||||
}
|
||||
|
||||
final Biome biome = Biome.valueOf(new StringComparsion(args[1], Biome.values()).getBestMatch());
|
||||
/*
|
||||
* for (Biome b : Biome.values()) {
|
||||
|
|
Loading…
Reference in a new issue