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
Could temperature support for the Eventide Warcasket be added?
https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=3536153812
[Farhan's Warcasket Tweaks (Vacuum and Temperature)] Patch operation Verse.PatchOperationFindMod(Alpha Mechs) failed
file: C:\Games\Indiv\Rimworld\Mods\3533261706\Patches\Alpha_Mech_Warcasket.xml
Common sense, but easy to overlook. Could benefit from enforced load order.
after some quick XML-editing:
i tried changing the patch operation class to "PatchOperationReplace" (from "..Add" ) which threw an error - the game for some reason doesn't register the original mods vacuum resistance stat on the shoulders as the same stat being added/replaced - couldn't figure out why tho.
What ended up working was first removing the old value and then adding the new one. So something like this for each item:
<Operation Class="PatchOperationRemove">
<xpath> Defs/.../VacuumResistance </xpath>
</Operation>
<Operation Class="PatchOperationAdd">
<xpath> Defs/... </xpath>
<value> ... </value>
</Operation>