Update PluginFile.kt

This commit is contained in:
Jakob K
2021-05-19 00:01:55 +02:00
parent 611340e097
commit dab0a7f0da

View File

@@ -5,7 +5,5 @@ import java.io.File
class PluginFile(path: String, child: String? = null) : File(
"${KSpigotMainInstance.dataFolder}",
run {
if (child == null) path else File(path, child).path
}
if (child == null) path else File(path, child).path
)