Alexthw46 / Ars-Elemental

Add-on to Ars Nouveau, based on elemental stuff
https://www.curseforge.com/minecraft/mc-mods/ars-elemental-elemental-spell-foci
GNU General Public License v3.0
4 stars 6 forks source link

Fix for errors parsing recipes [1.19.2] #27

Closed Kanzaji closed 1 year ago

Kanzaji commented 1 year ago
[12:25:16] [Render thread/INFO] [minecraft/ChatComponent]: [CHAT] 3) Failed to parse recipe 'ars_elemental:jeed/life_link[jeed:effect_provider]'! Falling back to vanilla: com.google.gson.JsonSyntaxException: Unknown item 'ars_nouveau:glyph_life_link'
[12:25:16] [Render thread/INFO] [minecraft/ChatComponent]: [CHAT] 4) Failed to parse recipe ars_elemental:jeed/life_link[jeed:effect_provider]: com.google.gson.JsonSyntaxException: Unknown item 'ars_nouveau:glyph_life_link'
[12:25:16] [Render thread/INFO] [minecraft/ChatComponent]: [CHAT] 7) Failed to parse recipe 'ars_elemental:jeed/entrhalled[jeed:effect_provider]'! Falling back to vanilla: com.google.gson.JsonSyntaxException: Unknown item 'ars_nouveau:glyph_charm'
[12:25:16] [Render thread/INFO] [minecraft/ChatComponent]: [CHAT] 8) Failed to parse recipe ars_elemental:jeed/entrhalled[jeed:effect_provider]: com.google.gson.JsonSyntaxException: Unknown item 'ars_nouveau:glyph_charm'
[12:25:16] [Render thread/INFO] [minecraft/ChatComponent]: [CHAT] 13) Failed to parse recipe 'ars_elemental:jeed/watery_grave[jeed:effect_provider]'! Falling back to vanilla: com.google.gson.JsonSyntaxException: Unknown item 'ars_nouveau:glyph_watery_grave'
[12:25:16] [Render thread/INFO] [minecraft/ChatComponent]: [CHAT] 14) Failed to parse recipe ars_elemental:jeed/watery_grave[jeed:effect_provider]: com.google.gson.JsonSyntaxException: Unknown item 'ars_nouveau:glyph_watery_grave'

Those errors occur on load of the world in 1.19.2 Ars Elemental 😅 After inspecting jsons, it seems there is a typo in the namespace of the items they require, as all of the items specified there are on the namespace of Ars Elemental, and not Ars Nouveau 😄

This PR fixes those typos to remove the errors!

Issue is present on latest version of Ars Elemental and Ars Nouveau 3.12.3 and 3.13.0

Kanzaji commented 1 year ago

PS: Why the log has [CHAT] component? Well, its because its easier to look at those warnings with use of KubeJS 😅

Kanzaji commented 1 year ago

Another batch of fixes for latest version done 😄