From ae8d19646f932d543beea3597c1168416bc2061c Mon Sep 17 00:00:00 2001 From: kookroach Date: Wed, 7 Apr 2021 00:19:48 +0200 Subject: [PATCH] debug --- ReallifeGamemode.Server/Util/AnimationSync.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Util/AnimationSync.cs b/ReallifeGamemode.Server/Util/AnimationSync.cs index 1b84b74b..0f1e5dd3 100644 --- a/ReallifeGamemode.Server/Util/AnimationSync.cs +++ b/ReallifeGamemode.Server/Util/AnimationSync.cs @@ -30,7 +30,7 @@ namespace ReallifeGamemode.Server.Util { string animationName = animations.ElementAt(0); List nextAnimations = animations.Skip(1).ToList(); - player.SendChatMessage(nextAnimations.ToString()); + nextAnimations.ForEach(s => player.SendChatMessage(s)); player.SyncAnimation(animationName);