mirror of
https://gitgud.io/amevarashi/rjw-sexperience-ideology.git
synced 2024-08-15 00:43:19 +00:00
e622b7a391
Added in-game explanation for DefExtension_ModifyMtb effect
17 lines
443 B
C#
17 lines
443 B
C#
using Verse;
|
|
|
|
namespace RJWSexperience.Ideology
|
|
{
|
|
public class RsiSettings : ModSettings
|
|
{
|
|
public bool patchRomanceChanceFactor;
|
|
public bool patchIncestuousManualRomance;
|
|
|
|
public override void ExposeData()
|
|
{
|
|
base.ExposeData();
|
|
Scribe_Values.Look(ref patchRomanceChanceFactor, "patchSecondaryRomanceChanceFactor", true);
|
|
Scribe_Values.Look(ref patchIncestuousManualRomance, "patchIncestuousManualRomance", true);
|
|
}
|
|
}
|
|
}
|