Added butcher flag for ambient mobs.

This commit is contained in:
Wizjany
2012-12-25 18:34:17 -05:00
parent e728445383
commit 6c189c4ff9
3 changed files with 20 additions and 15 deletions

View File

@ -51,7 +51,8 @@ public abstract class LocalWorld implements World {
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 AMBIENT = 1 << 4;
public static final int FRIENDLY = PETS | NPCS | ANIMALS | GOLEMS | AMBIENT;
public static final int WITH_LIGHTNING = 1 << 20;
}