mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-12 20:38:35 +00:00
Merge remote-tracking branch 'remotes/origin/commanding' into commanding
# Conflicts: # worldedit-core/src/main/java/com/sk89q/worldedit/command/ChunkCommands.java # worldedit-core/src/main/java/com/sk89q/worldedit/command/UtilityCommands.java
This commit is contained in:
@ -80,7 +80,7 @@ public class AsyncSign extends AsyncBlockState implements Sign {
|
||||
CompoundTag nbt = getNbtData();
|
||||
if (nbt != null) {
|
||||
String color = nbt.getString("Color").toUpperCase();
|
||||
return DyeColor.valueOf(color);
|
||||
if (!color.isEmpty()) return DyeColor.valueOf(color);
|
||||
}
|
||||
return DyeColor.BLACK;
|
||||
}
|
||||
|
Reference in New Issue
Block a user