update PlayerUpdate packet process

This commit is contained in:
xuyuwtu 2026-01-28 22:38:24 +08:00
parent 6fe4f7fe85
commit e93af1a3f9
3 changed files with 61 additions and 3 deletions

View file

@ -75,6 +75,12 @@ namespace TShockAPI.Models.PlayerUpdate
set => bitsbyte[6] = value;
}
public bool IsMountActive
{
get => bitsbyte[7];
set => bitsbyte[7] = value;
}
/// <summary>
/// Constructs a new instance of MiscDataSet1 with the given backing BitsByte
/// </summary>