This commit is contained in:
AbstractConcept 2023-01-31 00:06:52 -06:00
parent 2256f28cf8
commit 12b947317e
52 changed files with 444 additions and 689 deletions

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using RimWorld;
using Verse;
namespace Privacy_Please
{
public class InteractionWorker_NullWorker : InteractionWorker
{
public InteractionWorker_NullWorker() { }
public override void Interacted(Pawn initiator, Pawn recipient, List<RulePackDef> extraSentencePacks, out string letterText, out string letterLabel, out LetterDef letterDef, out LookTargets lookTargets)
{
base.Interacted(initiator, recipient, extraSentencePacks, out letterText, out letterLabel, out letterDef, out lookTargets);
letterLabel = null;
letterText = null;
letterDef = null;
}
public override float RandomSelectionWeight(Pawn initiator, Pawn recipient)
{
return 0f;
}
}
}