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
If I re-enable JNR, it could probably overwrite the vanilla workshop fine; however, I will likely not be able to buy Tycoons again. If I disable JNR Industries with a JNR workshop in my save, I might lose my save.
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
SELECT 'UNIT_LEU_TYCOON', BuildingType
FROM Buildings WHERE BuildingType = 'BUILDING_JNR_MANUFACTURY';
The weird part is, the fix for Tycoon is there twice, whereas the fix for Investor (which works fine with JNR afaik?) is there only once.
As in, there are 3 documents of value for this. MonopolyPlus_Units, MonopolyPlus_Tycoons, and MonopolyPlus_JNRCompatibility.
The fix for investor is there in the JNR file and that's it. However, the fix for Tycoon is in the JNR file, as well as the Tycoon file, but not the Units file. Perhaps this is causing some sort of conflict?
I'd have to test it out. Maybe it's as simple as deleting the aforementioned code from the Tycoon file and leave it only in the JNR file.
I can't test it myself rn though so if someone wants to, the path to access is 289070 -> 2479197624 -> Core
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
VALUES ('UNIT_LEU_TYCOON', 'BUILDING_WORKSHOP');
adding
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
SELECT 'UNIT_LEU_TYCOON', BuildingType
FROM Buildings WHERE BuildingType = 'BUILDING_JNR_WORKSHOP';
where the Manufactory fix is. Maybe having JNR on replaces normal workshop name with JNR workshop.
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
SELECT 'UNIT_LEU_TYCOON', BuildingType
FROM Buildings WHERE BuildingType = 'BUILDING_WORKSHOP';
I noticed that this code was only one that was missing.
does it still work? I tried the change as well but if i dont disable jnr industry, i cant buy tycoons.