Fixed weird bug

This commit is contained in:
Auxilor
2022-07-07 22:54:54 +01:00
parent 0370e9f454
commit bbd0182c2a

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)