Skip to content

Commit 7053371

Browse files
[3.3.9] update taboolib
1 parent ef5e263 commit 7053371

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ subprojects {
5959
)
6060
}
6161
version {
62-
taboolib = "6.2.2"
62+
taboolib = "6.2.3"
6363
coroutines = null
6464
}
6565
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=me.arasple.mc.trmenu
2-
version=3.3.8
2+
version=3.3.9

plugin/src/main/kotlin/trplugins/menu/module/conf/Loader.kt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,8 @@ object Loader {
8787
if (result.state == SerialzeResult.State.IGNORE) {
8888
return@start result
8989
}
90-
if (result.succeed()) {
91-
if (TrMenu.SETTINGS.getBoolean("Loader.Listen-Files", true)) {
92-
listen(it)
93-
}
90+
if (result.succeed() && TrMenu.SETTINGS.getBoolean("Loader.Listen-Files", true)) {
91+
listen(it)
9492
} else errors.addAll(result.errors)
9593
result
9694
},

0 commit comments

Comments
 (0)