mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Fixed incorrect arg shifting on //forest.
This commit is contained in:
parent
b558463f56
commit
086533e6bc
@ -529,11 +529,11 @@ public class RegionCommands {
|
|||||||
@Logging(REGION)
|
@Logging(REGION)
|
||||||
public void forest(CommandContext args, LocalSession session, LocalPlayer player,
|
public void forest(CommandContext args, LocalSession session, LocalPlayer player,
|
||||||
EditSession editSession) throws WorldEditException {
|
EditSession editSession) throws WorldEditException {
|
||||||
TreeGenerator.TreeType type = args.argsLength() > 1 ? TreeGenerator.lookup(args.getString(1)) : TreeGenerator.TreeType.TREE;
|
TreeGenerator.TreeType type = args.argsLength() > 0 ? TreeGenerator.lookup(args.getString(0)) : TreeGenerator.TreeType.TREE;
|
||||||
double density = args.argsLength() > 2 ? args.getDouble(2) / 100 : 0.05;
|
double density = args.argsLength() > 1 ? args.getDouble(1) / 100 : 0.05;
|
||||||
|
|
||||||
if (type == null) {
|
if (type == null) {
|
||||||
player.printError("Tree type '" + args.getString(1) + "' is unknown.");
|
player.printError("Tree type '" + args.getString(0) + "' is unknown.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user