Mirror of 1.4.7 from Lovers Lab

This commit is contained in:
ghostclinic3YTB 2023-04-03 21:47:48 -04:00
parent 161133e4e1
commit 9a3d9f4185
607 changed files with 11263 additions and 1309 deletions

View file

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using RimWorld;
using Verse;
using HarmonyLib;
namespace SizedApparel
{
public static class SizedApparelDubsApparelPatch
{
public static void indoorPostFixPatch(Pawn pawn)
{
PawnGraphicSet graphicSet = pawn.Drawer?.renderer?.graphics;
if (graphicSet == null)
return;
var comp = pawn.TryGetComp<ApparelRecorderComp>();
if (comp == null)
return;
comp.needToCheckApparelGraphicRecords = true;
}
}
}