This commit is contained in:
Sanae 2022-02-22 14:06:14 -06:00
parent f21bfb7425
commit 954f9db537
1 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,9 @@ bool flipEnabled = Settings.Instance.Flip.EnabledOnStart;
float MarioSize(bool is2d) => is2d ? 180 : 160;
server.PacketHandler = (c, p) => {
Console.WriteLine($"{c.Id} {p}");
if (p is PlayerPacket pp) {
Console.WriteLine($"{c.Id} hack {pp.Hack}");
}
switch (p) {
case CostumePacket:
ClientSyncShineBag(c);