Fix dimension switching (at cost of breaking immersive portals)

This commit is contained in:
s809
2024-05-10 23:56:07 +05:00
parent 3d86c5c5ee
commit 543b5ed49a
@@ -47,7 +47,7 @@ public abstract class NettyMessage implements INetworkObject
@Override
public String toString()
{
return this.toString("");
return this.toString(" ");
}
protected String toString(@Nullable String extraData)
@@ -55,5 +55,4 @@ public abstract class NettyMessage implements INetworkObject
return this.getClass().getSimpleName() + "{" + extraData + '}';
}
}
}