[MCPE-17831] no empty bowl after eating mushroom stew Created: 30/Oct/16 Updated: 18/Nov/16 Resolved: 18/Nov/16 |
|
| Status: | Resolved |
| Project: | Minecraft (Bedrock codebase) |
| Component/s: | None |
| Affects Version/s: | 0.16.0, 0.16.1 |
| Fix Version/s: | 0.17.0.2 |
| Type: | Bug | ||
| Reporter: | Jason Davies | ||
| Resolution: | Fixed | Votes: | 1 |
| Labels: | bowl, mushroom-stew | ||
| Issue Links: |
|
||||||||
| Confirmation Status: | Confirmed | ||||||||
| Platform: | Tablet - iOS - iPad Pro | ||||||||
| CHK: | |||||||||
| ADO: | 39659 | ||||||||
| Description |
|
When you eat mushroom soup, you have no empty bowl, it disappears completely here. This may be intended but it is a change from the past! In the internal vanilla server pack's items.json: "mushroom_stew": { "use_duration": 32, "max_stack_size": 1, "food": { "nutrition": 6, "saturation_modifier": "normal", "is_meat": false, "using_converts_to": "item.bowl" } }, Notice how it uses "item.bowl". This is INCORRECT. It should say just "bowl", as seen in rabbit stew or beetroot soup: "rabbit_stew": { "use_duration": 32, "max_stack_size": 1, "food": { "nutrition": 10, "saturation_modifier": "normal", "using_converts_to": "bowl", "is_meat": true } }, |
| Comments |
| Comment by Zeb [ 18/Nov/16 ] |
|
Fixed in 0.17.0.1. (But I'm marking it as fixed in 0.17.0.2 because I can't mark an issue as fixed in an archived version.) |
| Comment by Zeb [ 07/Nov/16 ] |
|
Updated the description with what appears to be the root cause - an error in the items.json in the internal server behavior pack. |