fix: Fixes speech throttle (#1387)
This commit is contained in:
parent
41ccc51caa
commit
5ce657a842
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue