Jump to content

Cooking menu doesn't show igredients (Non-English)


AnNaj

Recommended Posts

PZ IWBUMS 41.44 in german

 

in the cooking menu when choosing the next igredient, its name and nutrition doesn't show up. There are multiple lines with "aus   " (like "add  " for english) and empty string after for each igredient.

in english version it works fine. In german i can click on a line and it adds an igredient but a can't know which one.

worked fine in previous versions, but not since update with fitness.

cooking in craft menu works. The bug shows only by rightclick on pan, bowl or something else.

Edited by AnNaj
Link to comment
Share on other sites

Found the Bug in media\lua\client\ISUI\ISINventoryPaneContextMenu.lua Line 1387 in ISINventoryPaneContextMenu:addItemInEvoRecipe

 

Original line 1388:

local txt = getText("ContextMenu_From_Ingredient", evoItem:getName(), extraInfo);

 

changed it to:

local txt = getText("ContextMenu_From_Ingredient") .. evoItem:getName() .. extraInfo; 

 

Same for Line 1390.

 

I think evoItem:getName() allready returns the translated string. So if it tries to translate the translation it only works for english.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...