Skip to content

Commit ae3bbdd

Browse files
committed
release: b15
1 parent 013f075 commit ae3bbdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/net/ccbluex/liquidbounce/FDPClient.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ object FDPClient {
8080
const val CLIENT_CLOUD = "https://cloud.liquidbounce.net/LiquidBounce"
8181
const val CLIENT_WEBSITE = "fdpinfo.github.io"
8282
const val CLIENT_GITHUB = "https://github.com/SkidderMC/FDPClient"
83-
const val CLIENT_VERSION = "b14"
83+
const val CLIENT_VERSION = "b15"
8484

8585
val clientVersionText = gitInfo["git.build.version"]?.toString() ?: "unknown"
8686
val clientVersionNumber = clientVersionText.substring(1).toIntOrNull() ?: 0 // version format: "b<VERSION>" on legacy
@@ -91,7 +91,7 @@ object FDPClient {
9191
* Defines if the client is in development mode.
9292
* This will enable update checking on commit time instead of regular legacy versioning.
9393
*/
94-
const val IN_DEV = true
94+
const val IN_DEV = false
9595

9696
val clientTitle = buildString(32) {
9797
append(CLIENT_NAME)

src/main/java/net/ccbluex/liquidbounce/features/module/modules/player/DelayRemover.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ object DelayRemover : Module("DelayRemover", Category.PLAYER) {
2222

2323
val noSlowBreak by boolean("NoSlowBreak", false)
2424
val air by boolean("Air", true) { noSlowBreak }
25-
val water by boolean("Water", false) { noSlowBreak }
25+
val water by boolean("Water", true) { noSlowBreak }
2626

2727
val exitGuiValue by boolean("NoExitGuiDelay", true)
2828

0 commit comments

Comments
 (0)