Merge fix
Build / Linux (push) Waiting to run
Build / Windows (push) Waiting to run

This commit is contained in:
KimLS
2026-04-28 00:15:35 -07:00
23 changed files with 232 additions and 87 deletions
+10
View File
@@ -82,6 +82,16 @@ Lua_Packet::Lua_Packet(const Lua_Packet& o) {
}
}
Lua_Packet::~Lua_Packet()
{
if (owned_) {
EQApplicationPacket* ptr = GetLuaPtrData();
if (ptr) {
delete ptr;
}
}
}
int Lua_Packet::GetSize() {
Lua_Safe_Call_Int();
return static_cast<int>(self->size);