mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-10 13:45:06 +00:00
Hack log
This commit is contained in:
parent
f21bfb7425
commit
954f9db537
1 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,9 @@ bool flipEnabled = Settings.Instance.Flip.EnabledOnStart;
|
||||||
|
|
||||||
float MarioSize(bool is2d) => is2d ? 180 : 160;
|
float MarioSize(bool is2d) => is2d ? 180 : 160;
|
||||||
server.PacketHandler = (c, p) => {
|
server.PacketHandler = (c, p) => {
|
||||||
Console.WriteLine($"{c.Id} {p}");
|
if (p is PlayerPacket pp) {
|
||||||
|
Console.WriteLine($"{c.Id} hack {pp.Hack}");
|
||||||
|
}
|
||||||
switch (p) {
|
switch (p) {
|
||||||
case CostumePacket:
|
case CostumePacket:
|
||||||
ClientSyncShineBag(c);
|
ClientSyncShineBag(c);
|
||||||
|
|
Loading…
Reference in a new issue