Started by
Tomtaru
on
Topic category: Help with Minecraft modding (Java Edition)
How do I make the display name of my fluid in JEI not be all code like?
Right now it is displayed as "fluid_type.tmted.tomato_sauce" instead of "Tomato Sauce"
Hello
I just had the similar problem and I find a solution !
You create a texture pack with a "en_us.json" file in the "lang" directory
an in int you paste this in your case :
{
"fluid_type.tmted.tomato_sauce" : "Tomato Sauce"
"over_fluid.name_in_jei" : "Name you want"
}
Then simply add the resource pack (you can force load it if your creating a mod-pack).
Also make a file for all languages you want to.
Thanks! I'll try it out. maybe the lang file can be included in the mod?
(found your reply after searching for the issue again, having completely forgotten I had posted the question XD)
There is a lang file included but it is missing the entry for "fluid_type.MOD_ID.FLUID", adding those manually by editing the textfile and repacking it with 7zip/winrar slves the issue!