Large number of player levels prevents crafting
phoenixf1re opened this issue ยท 3 comments
Expected Behavior
the recipe should be visible and craftable even if you have more than 15465 XP (level)
Current Behavior
the recipes vanishs if you have more than 15465 xp LEVEL
Steps to Reproduce (for bugs)
- create a recipe
2.start the game
3.give yourself 15466 LEVEL ( /xp 15466L
4.open the specified table/bench/station (in survival)
5.put the items for the recipe in the table
6.notice that there is absolutely nothing in the output slot - remove one xp level (/xp -1L)
- the recipe is back and you can craft it
Script
Crash Log
Your Environment
- Minecraft:
- Forge:14.23.5.2854 and 2859 and 2860
- CraftTweaker2:4.1.20.675
- Artisan Worktables:1.24.2
- Artisan Automation:1.0.6
- Artisan Integrations:1.3.0
- Artisan Workstumps:-----
- Athenaeum:1.19.5
- just enough items:4.16.1.301
- jei-integrations:1.6.0
Reproduced using:
import mods.artisanworktables.builder.RecipeBuilder;
RecipeBuilder.get("basic")
.setShaped([
[<minecraft:planks>, <minecraft:planks>, <minecraft:planks>],
[<minecraft:planks>, <minecraft:planks>, <minecraft:planks>],
[<minecraft:planks>, <minecraft:planks>, <minecraft:planks>]])
.addTool(<artisanworktables:artisans_hammer_diamond>, 1)
.addOutput(<minecraft:diamond>)
.create();