mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
implemented everything
This commit is contained in:
parent
e8d106795d
commit
d3c44080b5
4 changed files with 212 additions and 0 deletions
|
|
@ -168,6 +168,12 @@ public abstract partial class Payload
|
|||
payload = new DalamudLinkPayload();
|
||||
break;
|
||||
|
||||
case EmbeddedInfoType.PartyFinderNotificationLink:
|
||||
// this is handled by PartyFinderPayload, so let this fall through
|
||||
case EmbeddedInfoType.PartyFinderLink:
|
||||
payload = new PartyFinderPayload();
|
||||
break;
|
||||
|
||||
case EmbeddedInfoType.LinkTerminator:
|
||||
// this has no custom handling and so needs to fallthrough to ensure it is captured
|
||||
default:
|
||||
|
|
@ -267,11 +273,21 @@ public abstract partial class Payload
|
|||
/// </summary>
|
||||
QuestLink = 0x05,
|
||||
|
||||
/// <summary>
|
||||
/// The link to the party finder search conditions.
|
||||
/// </summary>
|
||||
PartyFinderNotificationLink = 0x08,
|
||||
|
||||
/// <summary>
|
||||
/// A status effect.
|
||||
/// </summary>
|
||||
Status = 0x09,
|
||||
|
||||
/// <summary>
|
||||
/// The link to a party finder listing.
|
||||
/// </summary>
|
||||
PartyFinderLink = 0x0A,
|
||||
|
||||
/// <summary>
|
||||
/// A custom Dalamud link.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue