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
A little bit, a little bit not. I'll likely clean this interaction up in a future patch!
I would like to report an issue that occurs when running the mod on Linux.
In modmain_jokers.lua, line 2,
local UpvalueHacker = GLOBAL.require "tools/UpvalueHacker"
causes an error on Linux due to case sensitivity in file paths. Since the actual file is located at scripts/tools/upvaluehacker.lua,
I suggest changing the line to
local UpvalueHacker = GLOBAL.require "tools/upvaluehacker"
for compatibility.
On Linux, file names are case-sensitive, unlike on Windows.
The error message I received was:
[string "../mods/workshop-2010472942/modmain_jokers...."]:2: module 'tools/UpvalueHacker' not found:
no field package.preload['tools/UpvalueHacker']
Thank you again for your great work on the mod. I appreciate your time and consideration.