Skip to content

Commit

Permalink
Update TPAura.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
Aspw-w committed Mar 8, 2024
1 parent c072178 commit d17786c
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import net.minecraft.entity.EntityLivingBase
import net.minecraft.network.play.client.C02PacketUseEntity
import net.minecraft.network.play.client.C03PacketPlayer.C04PacketPlayerPosition
import net.minecraft.network.play.client.C0APacketAnimation
import net.minecraft.util.Vec3
import java.util.*


Expand All @@ -46,7 +45,6 @@ class TPAura : Module() {
* Variables
*/
private val clickTimer = MSTimer()
private var tpVectors = arrayListOf<Vec3>()
var isBlocking = false
private var lastTarget: EntityLivingBase? = null

Expand All @@ -56,7 +54,6 @@ class TPAura : Module() {
override fun onDisable() {
isBlocking = false
clickTimer.reset()
tpVectors.clear()
lastTarget = null
}

Expand All @@ -74,7 +71,6 @@ class TPAura : Module() {
if (!clickTimer.hasTimePassed(attackDelay)) return

runAttack()
tpVectors.clear()
clickTimer.reset()
}

Expand Down

0 comments on commit d17786c

Please sign in to comment.