mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-26 10:44:42 +02:00
Potential fix for #1930
This commit is contained in:
@ -356,8 +356,8 @@ import java.util.Set;
|
||||
}
|
||||
if (PaperLib.getMinecraftVersion() == 13) {
|
||||
block.setType(Material.valueOf("WALL_SIGN"), false);
|
||||
} else {
|
||||
block.setType(Material.valueOf("OAK_WALL_SIGN"), false);
|
||||
} else if (PaperLib.getMinecraftVersion() == 14) {
|
||||
block.setType(Material.OAK_WALL_SIGN, false);
|
||||
}
|
||||
final Directional sign = (Directional) block.getBlockData();
|
||||
sign.setFacing(facing);
|
||||
|
Reference in New Issue
Block a user