Skip to content

Commit

Permalink
Merge pull request #1749 from ManInMyVan/fix/mutliplace
Browse files Browse the repository at this point in the history
fix multiplace false
  • Loading branch information
SamB440 authored Oct 5, 2024
2 parents fde6e03 + f3074e3 commit 0ddf0b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void onPacketReceive(PacketReceiveEvent event) {

@Override
public void onPredictionComplete(PredictionComplete predictionComplete) {
if (player.getClientVersion().isNewerThan(ClientVersion.V_1_8) && !player.skippedTickInActualMovement) {
if (player.getClientVersion().isNewerThan(ClientVersion.V_1_8) && !player.skippedTickInActualMovement && predictionComplete.isChecked()) {
for (String verbose : flags) {
flagAndAlert(verbose);
}
Expand Down

0 comments on commit 0ddf0b5

Please sign in to comment.