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
Can I convince you to remove the Stalker's ability to simply open your colony doors? I found the code a while back, but I'm not really into modding these days. I just been using special doors from other mods to avoid it, but it's a pain in the neck,
[HarmonyPatch(typeof(Building_Door), "PawnCanOpen")]
public static class Building_Door_Patch
{
public static void Postfix(ref bool __result, Pawn p)
{
if (p.kindDef == VoidDefOf.RH_DF2_Stalker)
{
__result = true;
}
}
}