AdventureZ

AdventureZ

8M Downloads

Skeleton Vanguard has 10% chance to block /kill damage

LTCatt opened this issue ยท 0 comments

commented

Minecraft Version

1.20.x

Mod Loader Version

0.15.10

Mod Version

1.4.20

Describe the Issue

Skeleton Vanguard has 10% chance to block /kill damage

if (source.isIn(DamageTypeTags.IS_PROJECTILE)) {
chance = this.getWorld().getRandom().nextInt(2);
} else if (!source.isIn(DamageTypeTags.BYPASSES_INVULNERABILITY) && this.getHealth() < this.getMaxHealth() / 2) {
chance = this.getWorld().getRandom().nextInt(5);
} else {
chance = this.getWorld().getRandom().nextInt(10);
}

latest.log

Do you use any other mods except the required ones?

No response