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
No known key found for this signature in database
GPG Key ID: 37E613079F3E5BB9

View File

@ -201,7 +201,7 @@ public class PlayerEventListener implements Listener {
"GLOW_INK_SAC" "GLOW_INK_SAC"
)); ));
int[] version = PlotSquared.platform().serverVersion(); int[] version = PlotSquared.platform().serverVersion();
if (version[1] >= 20 && version[2] >= 1) { if (version[1] >= 20) {
mutableDyes.add("HONEYCOMB"); mutableDyes.add("HONEYCOMB");
} }
DYES = Set.copyOf(mutableDyes); DYES = Set.copyOf(mutableDyes);