Skip to content

Commit

Permalink
Wtf
Browse files Browse the repository at this point in the history
  • Loading branch information
Aspw-w committed Jan 8, 2024
1 parent eb1eb1d commit d57f7e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/aspw/client/Client.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ import net.minecraft.util.ResourceLocation
object Client {

// Client information
const val isInDevelopment = false
const val isInDevelopment = true

const val CLIENT_BEST = "NightX"
const val CLIENT_FOLDER = "NightWare"
const val CLIENT_VERSION = "Release B80"
const val CLIENT_VERSION = "Beta B81"
const val CLIENT_CREATOR = "As_pw"
const val CLIENT_WEBSITE = "https://aspw-w.github.io/NightX-Web"
const val CLIENT_ANNOUNCEMENT = "$CLIENT_WEBSITE/database/announcement.txt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class WatchdogGround : SpeedMode("WatchdogGround") {
}
} else if (mc.thePlayer.fallDistance > 0.1 && mc.thePlayer.hurtTime != 0) {
if (mc.thePlayer.isPotionActive(Potion.moveSpeed)) {
MovementUtils.strafe(0.18f)
MovementUtils.strafe(0.175f)
} else {
MovementUtils.strafe(0.14f)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,9 @@ class Dead : Module() {
override fun onDisable() {
EntityUtils.targetDead = false
}

init {
if (EntityUtils.targetDead != state)
EntityUtils.targetDead = false
}
}

0 comments on commit d57f7e1

Please sign in to comment.