We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd26ada commit 485da54Copy full SHA for 485da54
common/src/main/kotlin/com/lambda/util/FolderRegister.kt
@@ -96,9 +96,9 @@ object FolderRegister : Loadable {
96
val path = resolve(
97
hostName.sanitizeForFilename()
98
).resolve(
99
- mc.world?.dimensionKey?.value?.path?.sanitizeForFilename() ?: "unknown"
+ mc.world?.dimensionKey?.value?.path?.sanitizeForFilename() ?: "unknown" // TODO: Change with utils when merged to master
100
)
101
- path.createIfNotExists()
+ path.mkdirs()
102
return path
103
}
104
0 commit comments