Skip to content

Commit

Permalink
improve blaze firing ability
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed May 12, 2019
1 parent 5d1f79a commit b4216b7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/mcmonkey/sentinel/SentinelTrait.java
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,9 @@ public double firingMinimumRange() {
if (type == EntityType.WITHER || type == EntityType.GHAST) {
return 8; // Yikes!
}
if (type == EntityType.BLAZE) {
return 3;
}
return 2;
}

Expand Down

0 comments on commit b4216b7

Please sign in to comment.