mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 21:17:00 +01:00
Fixed signs being editable after placement. Fix for BUKKIT-364
This commit is contained in:
parent
972b2087f2
commit
299a0d0919
1 changed files with 1 additions and 1 deletions
|
@ -1071,7 +1071,7 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
|
|||
for (int l = 0; l < 4; ++l) {
|
||||
tileentitysign1.lines[l] = event.getLine(l);
|
||||
}
|
||||
tileentitysign1.isEditable = true;
|
||||
tileentitysign1.isEditable = false;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
|
|
Loading…
Reference in a new issue