Skip to content

Commit

Permalink
Correctly cycle through pipes in despool
Browse files Browse the repository at this point in the history
Chalk this one up to 1:30am me; we need to adjust the 'pos' field on the
_ring_, and not the pipe because the pipe itself is not a ring :)
  • Loading branch information
Meorawr committed May 2, 2024
1 parent d4b4247 commit 60ce165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AceComm-3.0/ChatThrottleLib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ function ChatThrottleLib:Despool(Prio)
Prio.ByName[pipe.name] = nil
DelPipe(pipe)
else
pipe.pos = pipe.pos.next
ring.pos = ring.pos.next
end

-- Update bandwidth counters on successful sends.
Expand Down

0 comments on commit 60ce165

Please sign in to comment.