Skip to content

Commit

Permalink
fix: garden crash and count inaccuracies
Browse files Browse the repository at this point in the history
  • Loading branch information
inglettronald committed Jan 18, 2024
1 parent 3973342 commit f4d39db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "com.example.archloomtemplate"
version = "1.2.6"
version = "1.2.7"

// Toolchains:
java {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/dulkirmod/DulkirMod.kt
Expand Up @@ -143,7 +143,7 @@ class DulkirMod {
companion object {
const val MOD_ID = "dulkirmod"
const val MOD_NAME = "Dulkir Mod"
const val MOD_VERSION = "1.2.6"
const val MOD_VERSION = "1.2.7"
const val CHAT_PREFIX = "§f<§3DulkirMod§f>§r"

val mc: Minecraft = Minecraft.getMinecraft()
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/dulkirmod/utils/TablistUtils.kt
Expand Up @@ -80,7 +80,7 @@ object TabListUtils {
// figure out how many visitors
var index = scoreboardList.indexOf(line) + 1
var visitors = 0
while (index < scoreboardList.size && scoreboardList.get(index) != "" && index < 5) {
while (index < scoreboardList.size && scoreboardList.get(index) != "" && visitors < 5) {
visitors++
index++
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Expand Up @@ -3,7 +3,7 @@
"modid": "dulkirmod",
"name": "Dulkir Mod",
"description": "The worst skyblock mod.",
"version": "1.2.5",
"version": "1.2.7",
"mcversion": "1.8.9",
"authorList": [
"Dulkir"
Expand Down

0 comments on commit f4d39db

Please sign in to comment.