fix(core): Disables new movement and time sync (#391)

Bumps release version
This commit is contained in:
Kamron Batman 2021-01-06 22:40:07 -08:00 committed by GitHub
parent dfe89024ca
commit 1006352333
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,8 +20,9 @@ namespace Server.Network
public static void Configure()
{
IncomingPackets.Register(0x02, 7, true, MovementReq);
IncomingPackets.Register(0xF0, 0, true, NewMovementReq);
IncomingPackets.Register(0xF1, 9, true, TimeSyncReq);
// Not used by OSI, and interferes with ClassicUO/Razor protocol extensions
// IncomingPackets.Register(0xF0, 0, true, NewMovementReq);
// IncomingPackets.Register(0xF1, 9, true, TimeSyncReq);
}
public static void NewMovementReq(NetState ns, CircularBufferReader reader)