Fixed test dummy support in space
This commit is contained in:
parent
85f2032571
commit
21c8417b42
2 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue