fix: Fixes speech throttle (#1387)

This commit is contained in:
Kamron Batman 2023-04-05 09:21:44 -07:00 committed by GitHub
parent 41ccc51caa
commit 5ce657a842
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -141,7 +141,7 @@ namespace Server.Network
return true;
}
if (Core.TickCount - ns.GetPacketTime(packetID) + Delays[packetID] > 0)
if (Core.TickCount - ns.GetPacketTime(packetID) < Delays[packetID])
{
drop = true;
return false;