Skip to content

Commit

Permalink
b4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
opZywl committed Jul 28, 2024
1 parent 7a80116 commit 7b32226
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.jvmargs=-Xmx3g

mod_version=b3
mod_version=b4
maven_group=net.ccbluex
archives_base_name=FDPClient

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/ccbluex/liquidbounce/FDPClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ object FDPClient {
const val CLIENT_AUTHOR = "Zywl 1zuna"
const val CLIENT_CLOUD = "https://cloud.liquidbounce.net/LiquidBounce"
const val CLIENT_WEBSITE = "fdpinfo.github.io"
const val CLIENT_VERSION = "b3"
const val CLIENT_VERSION = "b4"

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

val clientTitle = CLIENT_NAME + " " + clientVersionText + " " + clientCommit + " | " + if (IN_DEV) " | DEVELOPMENT BUILD" else ""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@ import net.ccbluex.liquidbounce.value.BoolValue
import net.ccbluex.liquidbounce.value.ListValue

object CustomModel : Module("CustomModel", Category.VISUAL, hideModule = false) {
val mode by ListValue("Mode", arrayOf("Imposter", "Rabbit", "Freddy"), "Imposter")
val mode by ListValue("Mode", arrayOf("Imposter", "Rabbit", "Freddy", "None"), "Imposter")

val onlyMe by BoolValue("OnlyMe", true)
val onlyOther by BoolValue("OnlyOther", true)
val baby by BoolValue("Baby", true)
val rotatePlayer by BoolValue("RotatePlayer", false)

override val tag: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public<T extends EntityLivingBase> void doRender(T entity, double x, double y, d
disableCull();
this.mainModel.swingProgress = this.getSwingProgress(entity, partialTicks);
this.mainModel.isRiding = entity.isRiding();
this.mainModel.isChild = customModel.getBaby() && (customModel.getOnlyMe() && entity == mc.thePlayer || customModel.getOnlyOther() && entity != mc.thePlayer) && customModel.handleEvents() || entity.isChild();
this.mainModel.isChild = entity.isChild();

try
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class Armor(x: Double = -8.0, y: Double = 57.0, scale: Float = 1F,
private val percentageY by IntegerValue("PositionY", -19, -50..50)
private val percentageX by IntegerValue("PositionX", 21, -50..50)
var borderThickness by IntegerValue("Border", 0, 0..255)
var borderRadius by FloatValue("Radius", 4.5f, 0.1f..8.0f)
private val red by IntegerValue("Red", 255, 0..255)
private val green by IntegerValue("Green", 255, 0..255)
private val blue by IntegerValue("Blue", 255, 0..255)
Expand Down

0 comments on commit 7b32226

Please sign in to comment.