Skip to content

Commit

Permalink
Fixed crit_multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed May 5, 2023
1 parent 82d228e commit ce04f3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object EffectCritMultiplier : Effect<NoCompileData>("crit_multiplier") {
val event = data.event as? EntityDamageEvent ?: return false
val player = data.player ?: return false

if (player.velocity.y >= 0) {
if (player.velocity.y >= -0.1) {
return false
}

Expand Down

0 comments on commit ce04f3d

Please sign in to comment.