mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
Merge pull request #83 from rreminy/patch-3
Add a ToString() method to MapLinkPayload.cs
This commit is contained in:
commit
c48949532f
1 changed files with 5 additions and 0 deletions
|
|
@ -65,6 +65,11 @@ namespace Dalamud.Game.Chat.SeStringHandling.Payloads
|
|||
//}
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{Type} - TerritoryTypeId: {TerritoryTypeId}, MapId: {MapId}, RawX: {RawX}, RawY: {RawY}";
|
||||
}
|
||||
|
||||
protected override void ProcessChunkImpl(BinaryReader reader, long endOfStream)
|
||||
{
|
||||
(TerritoryTypeId, MapId) = GetPackedIntegers(reader);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue