feat(Core/Packet): SMSG_DURABILITY_DAMAGE_DEATH (#10894)

This commit is contained in:
IntelligentQuantum
2022-03-23 17:05:30 +04:30
committed by GitHub
parent ccb6d3e5a1
commit 6a6d0e5907
5 changed files with 21 additions and 6 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;
};
}
}