TheCodex6824 / ThaumcraftFix

GNU General Public License v3.0
8 stars 3 forks source link

Aspect description #36

Closed xJon closed 3 months ago

xJon commented 3 months ago

Certain addons add back aspects from Thaumcraft 4, and a couple of them lack a description: image image

Oddly enough I wasn't easily able to pinpoint which addon does this, and I'm not sure where would be the best place to add the description. I thought about potentially overriding Thaumcraft's language file?

Would appreciate any advice, thanks!

TheCodex6824 commented 3 months ago

The aspect description is a base Thaumcraft feature - every aspect has a description with a lang key of tc.aspect.<tag>. Due to how language keys work, you can add them anywhere as long as the resource loader can find them - it doesn't have to be in Thaumcraft's lang file itself. Ideally the addons would add it in their lang file, but you can also make your own.

xJon commented 3 months ago

Thank you :)