From d76bf4443cf76d081ddaf8f57c87ff33749256af Mon Sep 17 00:00:00 2001 From: Voxpire Date: Tue, 4 Aug 2026 22:28:46 +0100 Subject: [PATCH] Fix packet leak Credit: @nag0L --- Server/Mobile.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Server/Mobile.cs b/Server/Mobile.cs index d8382c0da..c60a19b06 100644 --- a/Server/Mobile.cs +++ b/Server/Mobile.cs @@ -6881,8 +6881,11 @@ namespace Server if (state.Mobile.CanSee(this)) { state.Mobile.ProcessDelta(); - - p = Packet.Acquire(new NewMobileAnimation(this, type, action, Utility.Random(0, 60))); + + if (p == null) + { + p = Packet.Acquire(new NewMobileAnimation(this, type, action, Utility.Random(0, 60))); + } state.Send(p); }