Skip to content

Commit

Permalink
1.0-pre4
Browse files Browse the repository at this point in the history
  • Loading branch information
My-Name-Is-Jeff committed May 11, 2021
1 parent bb0634e commit b5bbe5a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {

ext.kotlin_version = "1.5.0"

version = "1.0-pre3"
version = "1.0-pre4"
group = "skytils.skytilsmod"
archivesBaseName = "Skytils"

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/skytils/skytilsmod/Skytils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class Skytils {
companion object {
const val MODID = "skytils"
const val MOD_NAME = "Skytils"
const val VERSION = "1.0-pre3"
const val VERSION = "1.0-pre4"

@JvmField
val gson: Gson = GsonBuilder().setPrettyPrinting().create()
Expand Down
4 changes: 4 additions & 0 deletions src/main/kotlin/skytils/skytilsmod/core/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2127,6 +2127,10 @@ class Config : Vigilant(File("./config/skytils/config.toml"), "Skytils", sorting
this.itemRarityOpacity /= 100f
markDirty()
}
if (this.transparentHeadLayer > 1) {
this.transparentHeadLayer /= 100f
markDirty()
}
}

private object ConfigSorting : SortingBehavior() {
Expand Down

0 comments on commit b5bbe5a

Please sign in to comment.