You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version
Minecraft: 1.12.2
Forge: 14.23.5.2847
Aether: 1.12.2-v1.5.3.2
Skyroot Buckets of milk are not actually being added to the 'milkBucket'/'listAllmilk' oreDicts as intended, but there are four empty skyroot buckets being added to these oreDicts instead:
Adding a "1, " between the two parameters @ AetherDictionary.java, lines 66/67, will fix the issue:
register("milkBucket", new ItemStack(ItemsAether.skyroot_bucket, 1, EnumSkyrootBucketType.Milk.getMeta()));
register("milkBucket", new ItemStack(ItemsAether.skyroot_bucket, 1, EnumSkyrootBucketType.Milk.getMeta()));
(And for anyone else currently experiencing the issue and looking for a workaround, here's a crafttweaker script to fix it in the meantime)
Version
Minecraft: 1.12.2
Forge: 14.23.5.2847
Aether: 1.12.2-v1.5.3.2
Skyroot Buckets of milk are not actually being added to the 'milkBucket'/'listAllmilk' oreDicts as intended, but there are four empty skyroot buckets being added to these oreDicts instead:
The cause of the issue is because the Skyroot milk bucket uses the metadata value '4', and the code that's registering these oreDict entries is erroneously using this value for the item quantity parameter instead of the meta, as you can see here:
https://github.com/Gilded-Games/The-Aether-Archived/blame/4421ae961f37f433e5a2a7c51a8254f8152b24ac/src/main/java/com/gildedgames/the_aether/dictionary/AetherDictionary.java#L66
Adding a
"1, "
between the two parameters @ AetherDictionary.java, lines 66/67, will fix the issue:(And for anyone else currently experiencing the issue and looking for a workaround, here's a crafttweaker script to fix it in the meantime)
The text was updated successfully, but these errors were encountered: