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
"There's likely nothing SOS2 can do about it. That is a unique, bespoke issue that needs a unique patch by the author."
https://steamhost.cn/steamcommunity_com/workshop/filedetails/discussion/1909914131/2959418921935412551/?tscn=1633376797
Here comes the code:
[HarmonyPatch(typeof(WorldSwitchUtility), "SwitchToNewWorld")]
class WorldSwitchUtility_SwitchToNewWorld_Patch
{
public static RimWorld.Planet.WorldComponent worldcomponent_temp;
static void Prefix()
{
worldcomponent_temp= DubUtils.GetResearch();
}
static void Postfix()
{
Find.World.components.Add(worldcomponent_temp);
}
}
I guess that I got the wrong way to get current research status but I am not really sure. Really need your help with it.
Though I found a way to fix it in some way.Here is the method:
Open Dev Mode, open research tab, just finish them one by one by clicking 'buy' button and 'fin' button. Not cool but working. Anyway, hope it may help.