Skip to content

Commit

Permalink
Minor optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
AJ-Ferguson committed Sep 9, 2024
1 parent f5459d9 commit 94ce3e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2055,7 +2055,7 @@ public void updateThunder(float strength) {
// Do not send thunder packet if not raining
// The bedrock client will start raining automatically when updating thunder strength
// https://github.com/GeyserMC/Geyser/issues/3679
if (isThunder() && !isRaining()) {
if (!isRaining()) {
return;
}

Expand Down

0 comments on commit 94ce3e0

Please sign in to comment.