mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Various:
- Empty StringPlotBlocks are air - Update signs to 1.13 - Fix getting material in BukktiLocalQueue#setMaterial
This commit is contained in:
@ -34,7 +34,11 @@ public class StringPlotBlock extends PlotBlock {
|
||||
this.itemId = parts[1].toLowerCase(Locale.ENGLISH);
|
||||
} else {
|
||||
this.nameSpace = "minecraft";
|
||||
this.itemId = itemId.toLowerCase(Locale.ENGLISH);
|
||||
if (itemId.isEmpty()) {
|
||||
this.itemId = "air";
|
||||
} else {
|
||||
this.itemId = itemId.toLowerCase(Locale.ENGLISH);
|
||||
}
|
||||
}
|
||||
this.determineForeign();
|
||||
}
|
||||
|
Reference in New Issue
Block a user