Akarin-project/Akarin

The problem with the plates on this core!

Diskanskiy opened this issue · 4 comments

Hi, I installed the Akarin kernel on my server, I was very shocked by the results of TPS, and ping, even better than Paper, and most importantly - it can be translated to your language, and patching, but there was one problem. The plates do not work when I want to create a new one, and I write the text - it does not appear on it, but in the console writes this: Player User123 just tried to change non-editable sign

What to do?

Core version?

Core version?

1.12.2 (0.4.3)

TileEntity tileentity = worldserver.getTileEntity(blockposition);
if (!(tileentity instanceof TileEntitySign)) {
return;
}
TileEntitySign tileentitysign = (TileEntitySign) tileentity;
if (!tileentitysign.a() || tileentitysign.e() != this.player) {
this.minecraftServer.warning("Player " + this.player.getName() + " just tried to change non-editable sign");
this.sendPacket(tileentity.getUpdatePacket()); // CraftBukkit
return;
}

This should be fixed, please test out the latest release:
https://github.com/Akarin-project/Akarin/releases/tag/1.12.2-R0.4.4