Fixed test dummy support in space

This commit is contained in:
LemADEC 2017-06-10 21:06:29 +02:00
parent 85f2032571
commit 21c8417b42
2 changed files with 6 additions and 0 deletions

View file

@ -67,6 +67,11 @@ public class BreathingManager {
return true;
}
if (WarpDriveConfig.LOGGING_BREATHING) {
WarpDrive.logger.warn(String.format("Entity spawn denied at DIM%d @ (%d %d %d) entityId '%s'",
entityLivingBase.worldObj.provider.dimensionId,
x, y, z, idEntity));
}
return false;
}

View file

@ -237,6 +237,7 @@ public class Dictionary {
config.get("entity_tags", "Creeper" , "LivingWithoutAir").getString();
config.get("entity_tags", "Skeleton" , "LivingWithoutAir").getString();
config.get("entity_tags", "Zombie" , "LivingWithoutAir").getString();
config.get("entity_tags", "testdummy.Dummy" , "LivingWithoutAir").getString();
taggedEntitiesName = categoryEntityTags.getValues().keySet().toArray(new String[0]);
}