This commit is contained in:
rhailrake
2023-05-24 17:41:22 +06:00
committed by Aviu00
parent 514c7d0513
commit 2dd362fb65
7 changed files with 82 additions and 3 deletions

View File

@@ -128,6 +128,9 @@ public class EmoteAnimationSystem : EntitySystem
return;
component.AnimationId = state.AnimationId;
_emoteList[component.AnimationId].Invoke(uid);
if (_emoteList.ContainsKey(component.AnimationId))
{
_emoteList[component.AnimationId].Invoke(uid);
}
}
}