removed unnecessary logging

This commit is contained in:
c0ffee 2021-04-12 10:45:31 -07:00
parent f9db629082
commit 53fc49ede0
2 changed files with 0 additions and 2 deletions

View File

@ -92,10 +92,8 @@ namespace Rimworld_Animations {
IntVec3 pos = pawn.Position;
Log.Message("Pawns count:" + pawnsToAnimate.Count + "Selected Anims Count: " + anim.actors.Count);
if(pawnsToAnimate.Count > anim.actors.Count)
{
Log.Warning("Too many pawns for this anim. Stopping other actors...");
for(int i = anim.actors.Count; i < pawnsToAnimate.Count; i++)
{
pawnsToAnimate[i].TryGetComp<CompBodyAnimator>().isAnimating = false;