Skip to content

Commit

Permalink
refactor(legacy): LinkedList->ArrayDeque in Disabler (#5630)
Browse files Browse the repository at this point in the history
  • Loading branch information
MukjepScarlet authored Feb 15, 2025
1 parent d94a1d5 commit fcadf5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ object Disabler : Module("Disabler", Category.EXPLOIT) {

private var betaVerus2Stat = false
private var betaVerusModified = false
private val betaVerusPacketBuffer = LinkedList<Packet<INetHandlerPlayClient>>()
private val betaVerusPacketBuffer = ArrayDeque<Packet<INetHandlerPlayClient>>()
private var betaVerusLagTimer = MSTimer()

private val betaVerusRepeatTimes: Int
Expand Down

0 comments on commit fcadf5d

Please sign in to comment.