Skip to content

Commit

Permalink
change inconsistent blocks message for falling blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Blast-MC committed Feb 9, 2024
1 parent e1b670a commit 38ad459
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ private void cancelLayerTask(Match match) {
matchData.inconsistentChance = chance;
match.getTasks().wait(TickTime.SECOND.x(10), () -> matchData.inconsistentChance = MathUtils.clamp(matchData.inconsistentChance - chance, 0, 100));

match.broadcast("&bBlocks are now dropping inconsistently (" + chance + "%) for 10s!");
match.broadcast("&bBlocks are now dropping inconsistently (" + (100 - chance) + "%) for 10s!");
}
);

Expand Down

0 comments on commit 38ad459

Please sign in to comment.