Skip to content

Commit 5921384

Browse files
committed
fix(paper): misleading system property example
Closes #705.
1 parent 3c95c7c commit 5921384

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/paper/admin/reference/system-properties.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ If you are unsure about what a flag does, it is recommended that you **do not us
1818
System properties are set when you start your server. For example, if you are using a `.bat` or a `.sh` file to start your server, you can add the system properties to the file. For example:
1919

2020
```bash
21-
java -Dpaper.log-level=FINE -jar paper.jar
21+
java -Dcom.mojang.eula.agree=true -jar paper.jar
2222
```
2323

2424
:::note
2525

2626
Some of Paper's system properties contain a `.` character in their name. When using PowerShell, these will require wrapping in quotes.
27-
i.e. `"-Dpaper.log-level=FINE"`
27+
i.e. `"-Dcom.mojang.eula.agree=true"`
2828

2929
:::
3030

31-
Where a `-D` is used to set a system property, and the system property is `paper.log-level` with a value of `FINE`. Otherwise, just add them to the start command.
31+
Where a `-D` is used to set a system property, and the system property is `com.mojang.eula.agree` with a value of `true`. Otherwise, just add them to the start command.
3232

3333
:::note
3434

0 commit comments

Comments
 (0)