Compare commits

..

2 Commits

Author SHA1 Message Date
Auxilor
a6754379e8 Updated to 6.37.3 2022-07-07 22:55:03 +01:00
Auxilor
bbd0182c2a Fixed weird bug 2022-07-07 22:54:54 +01:00
2 changed files with 6 additions and 2 deletions

View File

@@ -16,7 +16,11 @@ object ConflictFinder {
continue
}
val conflict = plugin.getConflict()
val conflict = try {
plugin.getConflict()
} catch (e: Exception) {
continue
} // Really can't be fucked to do this properly.
if (conflict != null) {
conflicts.add(conflict)

View File

@@ -1,3 +1,3 @@
version = 6.37.2
version = 6.37.3
plugin-name = eco
kotlin.code.style = official