-
Notifications
You must be signed in to change notification settings - Fork 2
How to update
If you've got a legacy patch for the original Giddy-Up, below are a few notes on what you need to do to update:
-
Change the namespace from
GiddyUpCoretoGiddyUp( the part after the<li Class=). -
Remove
Patchfrom the end of all the classes ( exampleFactionRestrictionsPatchtoFactionRestrictions). -
Change CSV vectors to native vectors ( example:
<southOffsetCSV>0,0,-0.2</southOffsetCSV>to<southOffset>(0, 0, -0.2)</southOffset>). -
For
FactionRestrictions, change CSV lists to native lists ( see: https://github.com/Owlchemist/GiddyUp2/wiki#faction-restrictions ). -
If using a
PatchOperationFindMod, yourlishould beGiddy-Up 2. -
If using
CompProperties_Mount'sdrawFrontbool, this is now an extension override. -
Some extension that apply to ThingDef now apply to PawnKindDef instead, such as CustomStats. Review the wiki for details.
As an side, while you're in the spirit of upgrading, you could also consider just getting rid of the patch entirely and handling it via an inline MayRequire instead directly within the def itself.