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
比如:<li MayRequire=“FrozenSnowFox.ComplexJobs”>FSFProduction</li>,
直接改成:<li>FSFProduction</li>
和 FSF complex jobs 就不冲突了
FrozenSnowFox大佬似乎搞错了?这里是不是不能用MayRequire?
启用DLC,本mod,Xml,Harmony,Complex Jobs
开发者生成pawn的功能无效
在XML里改机械体的工作设置,重启后地球就会爆炸
我没测试太多,主要是生成pawn的功能无效了,我用的PE人物修改器,开发者里生成pawn的功能也无效了,这功能不能用是要我命
应该很好复现,大大快修
I believe the issue is related to the recent addition of 'MayRequire' tags in your mod.
MayRequire="FrozenSnowFox.ComplexJobs">FSFProduction
MayRequireAnyOf="Mlie.CaptureThem,Mlie.CaptureThem_steam,lke.Smarter.CaptureThem">CaptureThemCapture
It seems that the necessary loadAfter tags for these mods were not included in the update. As a result, if your mod loads before its dependencies, a NullReferenceException occurs, causing the game to break.
I was able to resolve the issue by manually adjusting the mod order to ensure that ComplexJobs and CaptureThem are loaded before chougou mech.
Please add the appropriate loadAfter tags to your mod's configuration after updates. This is necessary to ensure the mod functions correctly with its dependencies.
<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="CGM_MechMaidGunner"]/race/mechEnabledWorkTypes/li</xpath>
<value>
<li>Handling</li>
</value>
</Operation>
</Patch>
Delete the /li at the xpath row after mechEnabledWorkTypes, to fix the patching error.
: C:\\Program Files (x86)\\Steam\steamapps\\workshop\content\\294100\3531074246\1.6\Patchs\JobPatch.xml
UnityEngine.StackTraceUtility:ExtractStackTrace ()
(wrapper ) MonoMod.Utils.DynamicMethodDefinition:Verse.Log.Error_Patch1
Verse.PatchOperation:
Verse.LoadedModManager:ClearCachedPatches ()
I'm getting this error message now. Until yesterday the mod was running
[Chougou Mechs] Patch operation CGM.PatchOperationAddOrReplace(Defs/WorkGiverDef[defName="WorkGiver_CarryToGrowthVat"]) failed
I don't use an Growth Vat, just in case.
Alternatively instead of using a patch you can simply add this line directly to the mechEnabledWorkTypes listed on your mechanoid. The MayRequire will ensure the node is only loaded when my mod is active.
<li MayRequire="FrozenSnowFox.ComplexJobs">FSFProduction</li>
Error when used with [FSF] Complex Jobs.