diff --git a/1.5/Assemblies/Rimworld-Animations.dll b/1.5/Assemblies/Rimworld-Animations.dll index 1eb329b..f2f3749 100644 Binary files a/1.5/Assemblies/Rimworld-Animations.dll and b/1.5/Assemblies/Rimworld-Animations.dll differ diff --git a/1.5/Defs/AnimationPropDefs/AnimationPropDef_Hand.xml b/1.5/Defs/AnimationPropDefs/AnimationPropDef_Hand.xml index 0a0bd00..b949979 100644 --- a/1.5/Defs/AnimationPropDefs/AnimationPropDef_Hand.xml +++ b/1.5/Defs/AnimationPropDefs/AnimationPropDef_Hand.xml @@ -17,7 +17,6 @@ Head True - LeftHand Skin 95 diff --git a/1.5/Defs/GroupAnimationDefs/Cowgirl/GroupAnimation_Cowgirl.xml b/1.5/Defs/GroupAnimationDefs/Cowgirl/GroupAnimation_Cowgirl.xml index 80a6022..7e513a2 100644 --- a/1.5/Defs/GroupAnimationDefs/Cowgirl/GroupAnimation_Cowgirl.xml +++ b/1.5/Defs/GroupAnimationDefs/Cowgirl/GroupAnimation_Cowgirl.xml @@ -115,7 +115,7 @@ -
  • Offset_Cowgirl_Bottom
  • +
  • Offset_Placeholder
  • Offset_Cowgirl_Top
  • @@ -141,7 +141,7 @@ -
  • Offset_Cowgirl_Bottom
  • +
  • Offset_Placeholder
  • Offset_Cowgirl_Top
  • @@ -167,7 +167,7 @@ -
  • Offset_Cowgirl_Bottom
  • +
  • Offset_Placeholder
  • Offset_Cowgirl_Top
  • @@ -193,7 +193,7 @@ -
  • Offset_Cowgirl_Bottom
  • +
  • Offset_Placeholder
  • Offset_Cowgirl_Top
  • diff --git a/1.5/Source/Animations/PawnTests/PawnTest_JobDef.cs b/1.5/Source/Animations/PawnTests/PawnTest_JobDef.cs deleted file mode 100644 index 92346dc..0000000 --- a/1.5/Source/Animations/PawnTests/PawnTest_JobDef.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Verse; - -namespace Rimworld_Animations -{ - public class PawnTest_JobDef : BasePawnTest - { - public JobDef jobDef; - - public override bool PawnTest(Pawn pawn) - { - if (pawn.CurJobDef == jobDef) - { - return true; - } - return false; - } - } -} diff --git a/1.5/Source/Animations/PawnTests/PawnTest_PrisonerOfColony.cs b/1.5/Source/Animations/PawnTests/PawnTest_PrisonerOfColony.cs deleted file mode 100644 index 190c57b..0000000 --- a/1.5/Source/Animations/PawnTests/PawnTest_PrisonerOfColony.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Verse; - -namespace Rimworld_Animations -{ - class PawnTest_PrisonerOfColony : BasePawnTest - { - public override bool PawnTest(Pawn pawn) - { - return pawn.IsPrisonerOfColony; - } - } -} diff --git a/1.5/Source/Animations/PawnTests/PawnTest_Race.cs b/1.5/Source/Animations/PawnTests/PawnTest_Race.cs deleted file mode 100644 index 2f2f1fe..0000000 --- a/1.5/Source/Animations/PawnTests/PawnTest_Race.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Verse; - -namespace Rimworld_Animations -{ - public class PawnTest_Race : BasePawnTest - { - - public List races = new List(); - - public override bool PawnTest(Pawn pawn) - { - - foreach (ThingDef race in races) - { - if (pawn.def == race) - { - return true; - } - } - - return false; - - } - } -} diff --git a/1.5/Source/Animations/PawnTests/PawnTest_SlaveOfColony.cs b/1.5/Source/Animations/PawnTests/PawnTest_SlaveOfColony.cs deleted file mode 100644 index b158779..0000000 --- a/1.5/Source/Animations/PawnTests/PawnTest_SlaveOfColony.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Verse; - -namespace Rimworld_Animations -{ - class PawnTest_SlaveOfColony : BasePawnTest - { - public override bool PawnTest(Pawn pawn) - { - return pawn.IsSlaveOfColony; - } - } -} diff --git a/Rimworld-Animations.csproj b/Rimworld-Animations.csproj index b8ae4cf..e20555d 100644 --- a/Rimworld-Animations.csproj +++ b/Rimworld-Animations.csproj @@ -85,12 +85,8 @@ - - - -