예제 #1
0
        public static void ForceWool(Pawn p)
        {
            CompShearable compShearable = p.TryGetComp <CompShearable>();

            if (compShearable != null)
            {
                while (compShearable.Fullness < 1)
                {
                    compShearable.CompTick();
                }
                DebugActionsUtility.DustPuffFrom(p);
            }
        }