fix: Fixes empty spellbooks with EA client on Pre-AOS (#2131)

This commit is contained in:
Kamron Batman 2025-02-25 20:46:20 -08:00 committed by GitHub
parent 9b361822f3
commit 0265e0673a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ public static class OutgoingContainerPackets
return;
}
if (ns.NewSpellbook)
if (Core.AOS && ns.NewSpellbook)
{
ns.SendNewSpellbookContent(book, graphic, offset, content);
}