mirror of
https://gitgud.io/c0ffeeeeeeee/coffees-rjw-ideology-addons.git
synced 2024-08-14 23:57:38 +00:00
orgy tweaks
This commit is contained in:
parent
379c9a4d7d
commit
eb3cdf7758
5 changed files with 63 additions and 4 deletions
|
@ -0,0 +1,30 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Verse;
|
||||
using RimWorld;
|
||||
using rjw;
|
||||
using UnityEngine;
|
||||
|
||||
namespace CRIAOrgy
|
||||
{
|
||||
public class RitualOutcomeEffectWorker_Orgy : RitualOutcomeEffectWorker_FromQuality
|
||||
{
|
||||
public override void Apply(float progress, Dictionary<Pawn, int> totalPresence, LordJob_Ritual jobRitual)
|
||||
{
|
||||
foreach (KeyValuePair<Pawn, int> keyValuePair in totalPresence)
|
||||
{
|
||||
Pawn participant = keyValuePair.Key;
|
||||
|
||||
participant.mindState.Notify_OutfitChanged();
|
||||
|
||||
GlobalTextureAtlasManager.TryMarkPawnFrameSetDirty(participant);
|
||||
if (xxx.is_human(participant))
|
||||
participant.Drawer.renderer.graphics.ResolveAllGraphics();
|
||||
}
|
||||
|
||||
base.Apply(progress, totalPresence, jobRitual);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue