Crashes server with create mod
IThundxr opened this issue · 8 comments
Minecraft Version
1.18.x
Version
N/A
Details
Creators-of-Create/Create#3751 issue that should be fixed cc: tweaked side
It doesn't affect the normal usage of the potato cannon. It fixes the potato cannon causing a crash when calling turtle.getItemDetail()
on a dedicated server. Does that answer your question?
It doesn't affect the normal usage of the potato cannon. It fixes the potato cannon causing a crash when calling
turtle.getItemDetail()
on a dedicated server. Does that answer your question?
Yes
Fixed by Creators-of-Create/Create@0c5ccf3
Fixed by Creators-of-Create/Create@0c5ccf3
Just wondering doesn't this affect potato cannon aswell?
Item.isBarVisible
is not marked client only (as of 1.17 I don't believe anything outside of the client packages is client-only). The problem here is that Create's BackTankUtil.isBarVisible
is marked as client-only.
I'll switch over to isDamaged
/isDamageableItem
. here to avoid this, but it's probably worth seeing how this can be resolved on the Create end too.
I'll switch over to isDamaged/isDamageableItem. here to avoid this
I lied. Looking over the code again, I think the current behaviour is correct.