diff --git a/src/main/kotlin/commands/dev/DevCommand.kt b/src/main/kotlin/commands/dev/DevCommand.kt index ff6f633..b7da4b2 100644 --- a/src/main/kotlin/commands/dev/DevCommand.kt +++ b/src/main/kotlin/commands/dev/DevCommand.kt @@ -50,7 +50,7 @@ class DevCommand : CliktCommand("dev") { val server by argument().help("Server Template") val port by option("--port").long().default( if (System.getProperty("os.name").lowercase() == "windows" - ) 2050 else UnixSystem().uid + ) 2050 else (UnixSystem().uid + 1010) ).help("Port for Server") val world by option("--world", "-w").help("User World") val plugins by option("--plugins", "-p").help("Plugin Dir")