Identify cause of log message 'Skipping BlockEntity with id'
timbru31 opened this issue ยท 6 comments
Originally reported in #28 by @AntZaro
When I log on and place spawners, these appear:
[08:39:48] [Server thread/WARN]: Skipping BlockEntity with id
[08:40:03] [Server thread/WARN]: Skipping BlockEntity with id
[08:40:21] [Server thread/WARN]: Skipping BlockEntity with id
[08:42:32] [Server thread/WARN]: Skipping BlockEntity with id
Crosslinking to EssentialsX/Essentials#469
The log message is located in TileEntity.java from Minecraft itself and is logged when a tile entity could not be found. The id is extracted from get NBTTagCompound which is passed to the method and then looked up (via 1.11 MinecraftKey)
EssentialsX seems to mess around with spawners, too. After removing the plugin the message is no longer displayed.
Could it be related in any way with CoreProtect? If it doesn't know the ID and it decides to skip it. Just an idea.
I also have to say it doesn't give you the spawner back when you mine it for the sake of this issue, which is pretty bad.