Skip to content

Commit

Permalink
Temporarily disable the Paper optimisations - they're broken
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Feb 18, 2019
1 parent 9636c4c commit 96251fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/sk89q/craftbook/ChangedSign.java
Expand Up @@ -72,7 +72,8 @@ public Block getBlock() {

public Sign getSign() {
if (this.sign == null) {
this.sign = (Sign) PaperLib.getBlockState(this.block, false).getState();
// this.sign = (Sign) PaperLib.getBlockState(this.block, false).getState();
this.sign = (Sign) this.block.getState();
}
return sign;
}
Expand Down

0 comments on commit 96251fb

Please sign in to comment.