Fix creativeNetId overlap (#3756)

This commit is contained in:
AJ Ferguson 2023-05-10 04:41:36 -04:00 committed by GitHub
parent 9b264e6374
commit fbac0c10db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -468,7 +468,7 @@ public class ItemRegistryPopulator {
.build());
creativeItems.add(ItemData.builder()
.netId(creativeNetId.getAndIncrement())
.netId(creativeNetId.incrementAndGet())
.definition(definition)
.count(1)
.build());
@ -501,7 +501,7 @@ public class ItemRegistryPopulator {
if (customItem.creativeGroup() != null || customItem.creativeCategory().isPresent()) {
creativeItems.add(ItemData.builder()
.definition(registration.mapping().getBedrockDefinition())
.netId(creativeNetId.getAndIncrement())
.netId(creativeNetId.incrementAndGet())
.count(1)
.build());
}