This commit is contained in:
郑佩茹
2022-03-23 08:47:32 -06:00
9 changed files with 539 additions and 7 deletions

View File

@@ -114,6 +114,14 @@ namespace WorldPackets
ObjectGuid Roller;
};
class DurabilityDamageDeath final : public ServerPacket
{
public:
DurabilityDamageDeath() : ServerPacket(SMSG_DURABILITY_DAMAGE_DEATH, 0) { }
WorldPacket const* Write() override { return &_worldPacket; }
};
class CrossedInebriationThreshold final : public ServerPacket
{
public:
@@ -124,6 +132,7 @@ namespace WorldPackets
ObjectGuid Guid;
uint32 Threshold = 0;
uint32 ItemID = 0;
};
}
}