- tweak: Youbka update (#75)

* - fix: animation log shit

* - tweak: skirt funny think
This commit is contained in:
Cinkafox
2024-03-11 21:00:33 +03:00
committed by GitHub
parent d0174cf8da
commit fdee5c808a
11 changed files with 74 additions and 47 deletions

View File

@@ -28,12 +28,14 @@ public sealed class SharebleAnimationSystem : SharedAnimationSystem
private void OnProtoStart(AnimationProtoStartMessage ev)
{
Play(GetEntity(ev.Owner),ev.ProtoId);
if(ev.Owner.Valid)
Play(GetEntity(ev.Owner),ev.ProtoId);
}
private void OnStart(AnimationStartMessage ev)
{
Play(GetEntity(ev.Owner),ev.Data,ev.Id);
if(ev.Owner.Valid)
Play(GetEntity(ev.Owner),ev.Data,ev.Id);
}
public override void Play(EntityUid uid,ProtoId<AnimationPrototype> protoId)