Fix (#513)
* fix: Ботинки клоуна сново работают * fix: Световое копье теперь исчезает если его передать
This commit is contained in:
16
Content.Server/_White/Animations/WaddleAnimationSystem.cs
Normal file
16
Content.Server/_White/Animations/WaddleAnimationSystem.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Content.Shared._White.Animations;
|
||||
|
||||
namespace Content.Server._White.Animations;
|
||||
|
||||
public sealed class WaddleAnimationSystem : SharedWaddledAnimationSystem
|
||||
{
|
||||
protected override void PlayAnimation(EntityUid user)
|
||||
{
|
||||
RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(user)));
|
||||
}
|
||||
|
||||
protected override void StopAnimation(EntityUid user)
|
||||
{
|
||||
RaiseNetworkEvent(new StoppedWaddlingEvent(GetNetEntity(user)));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user