This commit is contained in:
AbstractConcept 2022-11-04 08:52:17 -05:00
parent 55402b9891
commit 03e634e56c
36 changed files with 866 additions and 491 deletions

View file

@ -15,7 +15,7 @@ namespace Privacy_Please
{
static Harmony_PatchAll()
{
Harmony harmony = new Harmony("Rimworld_Animations_Patch");
Harmony harmony = new Harmony("Privacy_Please");
harmony.PatchAll(Assembly.GetExecutingAssembly());
// Add quirks to game
@ -24,6 +24,8 @@ namespace Privacy_Please
Quirk cuckold = new Quirk("Cuckold", "CuckoldQuirk");
Quirk.All.AddDistinct(cuckold);
DebugMode.Message("Added RJW quirks");
}
}
}