安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
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.