Skip to content

Commit

Permalink
[+] Hotfix 0.2 Current Testing Tiers caused errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lrdcxdes committed Jan 2, 2024
1 parent 23ae8e6 commit 11e27bf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
19 changes: 14 additions & 5 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.tierlistmc.papi"
version = "1.5-hotfix01"
version = "1.5-hotfix02"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/tierlistmc/papi/expansion/Api.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.util.logging.Logger
@Serializable
data class Tier(
val name: String,
val id: Int,
val id: Int? = null,
)

@Serializable
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/tierlistmc/papi/expansion/TierlistMC.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class TierlistMC : PlaceholderExpansion(), Listener {
}

override fun getVersion(): String {
return "1.5-hotfix01"
return "1.5-hotfix02"
}

override fun onRequest(player: OfflinePlayer, params: String): String {
Expand Down

0 comments on commit 11e27bf

Please sign in to comment.