[SPIGOT-3162] FurnaceRecipe does not determine smelting/cooking experience Created: 02/Apr/17 Updated: 04/May/19 |
|
Status: | Open |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | Jacob Crofts | Assignee: | Unassigned |
Resolution: | Unresolved | Votes: | 0 |
Labels: | 1.11 |
Description |
All FurnaceRecipe experience values, including custom recipes with an experience value defined, are set to 0f once registered. It looks like these values are ignored upon FurnaceExtractEvent and instead vanilla logic is used to calculate experience. Bukkit.recipeIterator().forEachRemaining(recipe -> { if (recipe instanceof FurnaceRecipe) { System.out.println(((FurnaceRecipe) recipe).getExperience()); // always 0.0 } }); |
Comments |
Comment by Trophonix [ 04/May/19 ] |
Oh |
Comment by md_5 [ 04/May/19 ] |
MC has a hard cap of 1 experience point per item smelted best I can tell, with a bit of randomness added
> recipeIterator returning correct values. This is fixed in 1.14 at least |
Comment by Trophonix [ 03/May/19 ] |
I uploaded a FurnaceTest-1.0.jar plugin which simply creates a new FurnaceRecipe - cook BREAD to make CAKE, and sets experience to 10.0f. When you cook bread into cake, however, it gives 1 single XP point...
Spigot /version I'm testing on is git-Spigot1a3504a-a46fdbc, 1.13.2 |
Comment by md_5 [ 02/Apr/17 ] |
I've fixed custom recipes ignoring experience, but I haven't fixed recipeIterator returning correct values. |