feat(client): include update version

This commit is contained in:
Anna 2023-10-07 04:39:50 -04:00
parent d792c9d09d
commit c8955ee58b
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 5 additions and 2 deletions

View File

@ -142,12 +142,15 @@ public class Plugin : IDalamudPlugin {
[MessagePackObject]
public struct Update(uint territory, uint world, List<PlayerInfo> players) {
[Key(0)]
public readonly uint Territory = territory;
public readonly byte Version = 2;
[Key(1)]
public readonly uint World = world;
public readonly uint Territory = territory;
[Key(2)]
public readonly uint World = world;
[Key(3)]
public readonly List<PlayerInfo> Players = players;
}