Skip to content

Commit

Permalink
fix: waxing signs was introduced in 1.20 - not 1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreSchwang committed Aug 12, 2024
1 parent 7e183a2 commit b88a00c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public class PlayerEventListener implements Listener {
"GLOW_INK_SAC"
));
int[] version = PlotSquared.platform().serverVersion();
if (version[1] >= 20 && version[2] >= 1) {
if (version[1] >= 20) {
mutableDyes.add("HONEYCOMB");
}
DYES = Set.copyOf(mutableDyes);
Expand Down

0 comments on commit b88a00c

Please sign in to comment.