mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
67c2328ad6
Fix some IDE messages
17 lines
375 B
C#
17 lines
375 B
C#
namespace RJWSexperience // Change in namespace will lead to save incompatibility
|
|
{
|
|
public class Thought_AteCum : Thought_Recordbased
|
|
{
|
|
protected override void UpdateCurStage()
|
|
{
|
|
if (pawn?.health?.hediffSet?.HasHediff(RsDefOf.Hediff.CumAddiction) ?? false)
|
|
{
|
|
SetForcedStage(def.stages.Count - 1);
|
|
}
|
|
else
|
|
{
|
|
base.UpdateCurStage();
|
|
}
|
|
}
|
|
}
|
|
}
|