The /butcher command no longer kills mobs with a name tag.

This behaviour can be overridden with the new -t flag.
The -f flag encompasses this flag.
This commit is contained in:
TomyLobo
2014-03-23 19:40:03 +01:00
parent d18a20dafa
commit 8868aa94d3
4 changed files with 15 additions and 2 deletions

View File

@ -53,7 +53,8 @@ public abstract class LocalWorld implements World {
public static final int ANIMALS = 1 << 2;
public static final int GOLEMS = 1 << 3;
public static final int AMBIENT = 1 << 4;
public static final int FRIENDLY = PETS | NPCS | ANIMALS | GOLEMS | AMBIENT;
public static final int TAGGED = 1 << 5;
public static final int FRIENDLY = PETS | NPCS | ANIMALS | GOLEMS | AMBIENT | TAGGED;
public static final int WITH_LIGHTNING = 1 << 20;
}