mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-12-28 07:20:28 +01:00
Prevent recipe ID conflict
This commit is contained in:
parent
0f1a32e1c1
commit
6c0d3419fc
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
|
|||
this.openInventory = null;
|
||||
this.craftingRecipes = new Int2ObjectOpenHashMap<>();
|
||||
this.javaToBedrockRecipeIds = new Int2ObjectOpenHashMap<>();
|
||||
this.lastRecipeNetId = new AtomicInteger(InventoryUtils.LAST_RECIPE_NET_ID);
|
||||
this.lastRecipeNetId = new AtomicInteger(InventoryUtils.LAST_RECIPE_NET_ID + 1);
|
||||
|
||||
this.spawned = false;
|
||||
this.loggedIn = false;
|
||||
|
|
Loading…
Reference in a new issue