StackOverflowError during ServerTickEvent
LlubNek opened this issue ยท 3 comments
This function, gollorum.signpost.blocks.SuperPostPost.getSuperTile(SuperPostPost.java:245), just keeps calling itself forever causing a stack overflow.
Here's the problem line:
Changing this line from tile = getSuperTile(pos);
to tile = pos.getTile();
should fix it.
Fixed with version 1.08.1
I too am unsure what that line is supposed to do, but I am afraid something will break if I remove it. I think it had something to do with getTile() returning null if the chunk at that position was not loaded and me having no idea what I'm doing.
Anyway, thank you for pointing out this issue :D