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
https://steamhost.cn/steamcommunity_com/workshop/filedetails/discussion/1312585482/3247565033770097645/#c1694969361102406385
Edit: Found savefiles and logs from a clean test back in October: https://www.dropbox.com/s/swcwbj3vcdxbr7d/Logs-191028-Clean%20logs%20of%20MOCC.7z?dl=0
no other mods that change the UI in use.
No issues with upgrading unit with this mod.
Explanation
The issue is caused by JNR_GOV_MOCC_SPEC_OPS_ATTACK which introduces flanking bonus. This modifier needs an argument called Percent, at least that is what already exists in the game (there are 4 modifiers that use this effect). However, JNR put Amount here and BRS cannot find Percent and breaks.
Solution
In JNR's mod, file UC_GP_UnitAbilities.sql, Line 63
VALUES ('JNR_GOV_MOCC_SPEC_OPS_ATTACK', 'Amount', 150),
should be
VALUES ('JNR_GOV_MOCC_SPEC_OPS_ATTACK', 'Percent', 150),
Thank you most kindly, sir! Should I put forward this to JNR?
change line 1900 in the ReportScreen.lua:
Re: line 3945
This line means that there is a modifier with effect EFFECT_GRANT_ABILITY and wrongly defined Arguments. You may be running a mod with an incorrect Ability modifier. Otherwise you would not have such an error. BRS is also good for spotting such problems, and such patching as you propose ofc removes the signs of the but does not remove its cause.