Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
This is because of the (TheWorkshop.AcceptItemFunctionToolbelt) fuction in the workshop mod Inside the lua/server/TW.lua
You could edit this code to add more Category by adding more
=
local category = scriptItem:getDisplayCategory()
if category == "Tool" or category == "ToolWeapon"
or category == "ToolCarpentry"
or category == "ToolCleaning"
or category == "ToolElectrical"
or category == "ToolFarming"
or category == "ToolMechanics"
or category == "ToolMedical"
or category == "ToolMetalworking"
or category == "ToolSurvival"
or category == "ToolTailoring"
then
=
elseif item:getDisplayCategory() == "Surgery" or item:getDisplayCategory() == "FirstAid" then
category = "Medical";
Should be
category = "Med";
This is to fix IGUI_ItemCat_Medical showing for some items.