mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-12-03 10:23:15 +01:00
fix: waxing signs was introduced in 1.20 - not 1.20.1
This commit is contained in:
parent
7e183a22df
commit
b88a00c313
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user