This commit is contained in:
2021-04-07 00:19:48 +02:00
parent 6b09774786
commit ae8d19646f

View File

@@ -30,7 +30,7 @@ namespace ReallifeGamemode.Server.Util
{
string animationName = animations.ElementAt(0);
List<string> nextAnimations = animations.Skip(1).ToList();
player.SendChatMessage(nextAnimations.ToString());
nextAnimations.ForEach(s => player.SendChatMessage(s));
player.SyncAnimation(animationName);