Add a -f (friendly) flag to butcher

This commit is contained in:
aumgn
2012-03-17 09:09:31 +01:00
committed by TomyLobo
parent a23e9b857f
commit 499f3ccda7
2 changed files with 32 additions and 21 deletions

View File

@ -40,6 +40,7 @@ public abstract class LocalWorld {
public static final int NPCS = 1 << 1;
public static final int ANIMALS = 1 << 2;
public static final int GOLEMS = 1 << 3;
public static final int FRIENDLY = PETS | NPCS | ANIMALS | GOLEMS;
public static final int WITH_LIGHTNING = 1 << 20;
}