Bassebombecraft

Bassebombecraft

18.5k Downloads

Spirals created by book of naturalize and pinkynize skips elements

Closed this issue ยท 2 comments

commented
commented

Observation:
GenericRightClickedBook.inventoryTick(..) invokes action.onUpdate().
inventoryTick is invoked by the server and client player...

Solution:
Only invoke the action if a logical server side, i.e. add:

public void inventoryTick(...) {
  if (isLogicalClient(worldIn)) return;
commented

Resolved with commit: 4c94754