mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 14:57:44 +00:00
Merge pull request #893 from hkAlice/unfourtunate-warps
[3.x] temporarily move integritystatus to zonedef;
This commit is contained in:
commit
c61e367c5a
2 changed files with 13 additions and 13 deletions
|
@ -1048,18 +1048,6 @@ namespace Sapphire::Common
|
||||||
CalcResultParam CalcResultCt[4];
|
CalcResultParam CalcResultCt[4];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct IntegrityStatus
|
|
||||||
{
|
|
||||||
uint8_t Slot;
|
|
||||||
uint8_t __padding1;
|
|
||||||
uint16_t Id;
|
|
||||||
int16_t SystemParam;
|
|
||||||
uint8_t __padding2;
|
|
||||||
uint8_t __padding3;
|
|
||||||
float Time;
|
|
||||||
uint32_t Source;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum class ActionCollisionType : uint8_t
|
enum class ActionCollisionType : uint8_t
|
||||||
{
|
{
|
||||||
None,
|
None,
|
||||||
|
|
|
@ -469,6 +469,18 @@ namespace Sapphire::Network::Packets::WorldPackets::Server
|
||||||
uint8_t Type;
|
uint8_t Type;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct IntegrityStatus {
|
||||||
|
uint8_t Slot;
|
||||||
|
uint8_t __padding1;
|
||||||
|
uint16_t Id;
|
||||||
|
int16_t SystemParam;
|
||||||
|
uint8_t __padding2;
|
||||||
|
uint8_t __padding3;
|
||||||
|
float Time;
|
||||||
|
uint32_t Source;
|
||||||
|
uint8_t unknown_3_2;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Structural representation of the packet sent by the server
|
* Structural representation of the packet sent by the server
|
||||||
* add a status effect
|
* add a status effect
|
||||||
|
@ -488,7 +500,7 @@ namespace Sapphire::Network::Packets::WorldPackets::Server
|
||||||
uint16_t MpMax;
|
uint16_t MpMax;
|
||||||
uint8_t StatusCount;
|
uint8_t StatusCount;
|
||||||
uint8_t __padding3;
|
uint8_t __padding3;
|
||||||
Common::IntegrityStatus Status[4];
|
IntegrityStatus Status[4];
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue