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
Secondly, i just made a bug report in your discussion thread for bugs, figure i should let you know if you dont have the notifications on, or something.
Cheers.
`attempted index: getOptionFromName of non-table: null
function: createMenu -- file: PutInContainer.lua line # 6 | MOD: [B42] Mutie's Context Menu icons Expanded
function: GetInventoryCreateMenuContext -- file: BaseFunctions.lua line # 16 | MOD: [B42] Mutie's Context Menu icons Storage
function: GetInventoryCreateMenuContextIconized -- file: BaseFunctions.lua line # 53 | MOD: [B42] Mutie's Context Menu icons Storage
function: onRightMouseUp -- file: EquipmentSlot.lua line # 84 | MOD: Equipment UI
java.lang.RuntimeException: attempted index: getOptionFromName of non-table: null
at se.krka.kahlua.vm.KahluaThread.tableget(KahluaThread.java:1667)
...
For those who are experiencing the same problem, the path folder for Common Sense Mod is
C:\Program Files (x86)\Steam\steamapps\workshop\content\108600\2875848298\mods\CommonSense
mods/CommonSense/42.0/media/lua/client/ISUI/BB_CS_WashMenu.lua
mods/CommonSense/media/lua/client/ISUI/BB_CS_WashMenu.lua
both have the same problem on line 134 you'll need to fix.
If you PZ in debug mode, it breaks when creating the sink menu and calls out line 134 in the BB_CS_WashMenu.lua file.
The line there is `local waterRemaining = sink:getWaterAmount()`
I tried to find that function in the vanilla lua scripts and couldn't but after some sleuthing did find a `getFluidAmount()` function. I am guessing the devs might've merged some code for anything containing a fluid and renamed the function.
If you change both lines in the CommonSense mod and this one to
`local waterRemaining = sink:getFluidAmount()`
and reload your game it should work.
Note: I did this while the game was running: did an exit to menu and then load game. Idk how Steam handles keeping these files up to date so if you fully exit it might overwrite the fix, no clue. But yeah if you launch the game to the main menu, edit those 2 files to change the function name, and then load your game it'll fix it.