Skip to content

Commit

Permalink
wakes not spawning in boat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Goby56 committed Apr 14, 2024
1 parent 4546df1 commit 980aab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/goby56/wakes/mixin/WakeSpawnerMixin.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void tick(CallbackInfo info) {
return;
}

if (this.onWaterSurface && this.horizontalNumericalVelocity > 1e-3 && !this.hasRecentlyTeleported) {
if (this.onWaterSurface && !this.hasRecentlyTeleported) {
if (this.producingWaterLevel == null)
this.producingWaterLevel = WakesUtils.getWaterLevel(this.world, thisEntity);

Expand Down

0 comments on commit 980aab9

Please sign in to comment.