mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 07:17:58 +01:00
Exclude spawn bonus chests from mimics
# Conflicts: # src/main/java/com/minelittlepony/unicopia/entity/mob/MimicEntity.java
This commit is contained in:
parent
d54d644146
commit
73c47fef62
1 changed files with 3 additions and 1 deletions
|
@ -69,6 +69,7 @@ public class MimicEntity extends PathAwareEntity {
|
|||
return false;
|
||||
}
|
||||
|
||||
// TODO: Local difficulty?
|
||||
int difficulty = world.getDifficulty().ordinal() - 1;
|
||||
float threshold = 0.35F * ((EnchantmentUtil.getLuck(0, player) / 20F) + 0.5F);
|
||||
return difficulty > 0 && world.random.nextFloat() < (difficulty / 3F) * threshold;
|
||||
|
@ -101,7 +102,8 @@ public class MimicEntity extends PathAwareEntity {
|
|||
&& lootTable.getPath().indexOf("village") == -1
|
||||
&& lootTable.getPath().indexOf("bastion") == -1
|
||||
&& lootTable.getPath().indexOf("underwater") == -1
|
||||
&& lootTable.getPath().indexOf("shipwreck") == -1;
|
||||
&& lootTable.getPath().indexOf("shipwreck") == -1
|
||||
&& !LootTables.SPAWN_BONUS_CHEST.equals(lootTable);
|
||||
}
|
||||
|
||||
MimicEntity(EntityType<? extends MimicEntity> type, World world) {
|
||||
|
|
Loading…
Reference in a new issue