mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
Actually return.
By: md_5 <git@md-5.net>
This commit is contained in:
parent
6802819ab3
commit
3aa6b5e2f7
1 changed files with 2 additions and 1 deletions
|
@ -137,7 +137,8 @@ public class Main {
|
|||
// Do you love Java using + and ! as string based identifiers? I sure do!
|
||||
String path = new File(".").getAbsolutePath();
|
||||
if (path.contains("!") || path.contains("+")) {
|
||||
System.err.println("Cannot run server in a directory with ! or + in the pathname. Please rename the affected folders and try again,");
|
||||
System.err.println("Cannot run server in a directory with ! or + in the pathname. Please rename the affected folders and try again.");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue