fix: waxing signs was introduced in 1.20 - not 1.20.1

This commit is contained in:
Pierre Maurice Schwang
2024-08-12 21:47:26 +02:00
parent 7e183a22df
commit b88a00c313

View File

@ -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);