Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
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.