mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
89d51d5f29
Because this exploit has been widely known for years and has not been fixed by Mojang, we decided that it was worth allowing people to toggle it on/off due to how easy it is to make it configurable. It should be noted that this decision does not promise all future exploits will be configurable.
23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Warrior <50800980+Warriorrrr@users.noreply.github.com>
|
|
Date: Fri, 7 Apr 2023 20:11:17 +0200
|
|
Subject: [PATCH] Fix demo flag not enabling demo mode
|
|
|
|
https://github.com/PaperMC/Paper/issues/9046
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Main.java b/src/main/java/net/minecraft/server/Main.java
|
|
index aa19a24b10cc6f4f79bb9ad65f92f60735ac5387..deb2d8c22a1c5724d0ac8571f4ea54711988dc4b 100644
|
|
--- a/src/main/java/net/minecraft/server/Main.java
|
|
+++ b/src/main/java/net/minecraft/server/Main.java
|
|
@@ -332,7 +332,9 @@ public class Main {
|
|
|
|
/*
|
|
dedicatedserver1.setPort((Integer) optionset.valueOf(optionspec10));
|
|
- dedicatedserver1.setDemo(optionset.has(optionspec2));
|
|
+ */
|
|
+ dedicatedserver1.setDemo(optionset.has("demo")); // Paper - Restore setting the demo mode
|
|
+ /*
|
|
dedicatedserver1.setId((String) optionset.valueOf(optionspec11));
|
|
*/
|
|
boolean flag1 = !optionset.has("nogui") && !optionset.nonOptionArguments().contains("nogui");
|