Skip to content

Commit

Permalink
Nerf placing down cellular blocks via Create means (#4532)
Browse files Browse the repository at this point in the history
Block entity NBT is ignored when a cellular block is placed by a non-OP
player or by the various automated ways the Create mod has to offer.
That means cellular blocks placed in those ways always start at age
zero.
  • Loading branch information
TheRealWormbo authored Jan 2, 2024
1 parent 5d68df9 commit 4e75d3d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,9 @@ public void readPacketNBT(CompoundTag cmp) {
}
}

@Override
public boolean onlyOpCanSetNbt() {
// targeting Create here, sorry about any instances of https://xkcd.com/1172/
return true;
}
}

0 comments on commit 4e75d3d

Please sign in to comment.