mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 15:49:00 +01:00
Remove string dupe exploit setting (#11670)
This commit is contained in:
parent
63d0de648f
commit
57ab68f4ee
1 changed files with 2 additions and 3 deletions
|
@ -653,8 +653,6 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||||
+ public UnsupportedSettings unsupportedSettings;
|
+ public UnsupportedSettings unsupportedSettings;
|
||||||
+
|
+
|
||||||
+ public class UnsupportedSettings extends ConfigurationPart {
|
+ public class UnsupportedSettings extends ConfigurationPart {
|
||||||
+ @Comment("This setting controls if the broken behavior of disarmed tripwires not breaking should be allowed. This also allows for dupes")
|
|
||||||
+ public boolean allowTripwireDisarmingExploits = false;
|
|
||||||
+ @Comment("This setting allows for exploits related to end portals, for example sand duping")
|
+ @Comment("This setting allows for exploits related to end portals, for example sand duping")
|
||||||
+ public boolean allowUnsafeEndPortalTeleportation = false;
|
+ public boolean allowUnsafeEndPortalTeleportation = false;
|
||||||
+ @Comment("This setting controls if players should be able to break bedrock, end portals and other intended to be permanent blocks.")
|
+ @Comment("This setting controls if players should be able to break bedrock, end portals and other intended to be permanent blocks.")
|
||||||
|
@ -1417,7 +1415,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||||
+ path("limit-player-interactions"),
|
+ path("limit-player-interactions"),
|
||||||
+ path("warnWhenSettingExcessiveVelocity"),
|
+ path("warnWhenSettingExcessiveVelocity"),
|
||||||
+ path("logging", "use-rgb-for-named-text-colors"),
|
+ path("logging", "use-rgb-for-named-text-colors"),
|
||||||
+ path("unsupported-settings", "allow-grindstone-overstacking")
|
+ path("unsupported-settings", "allow-grindstone-overstacking"),
|
||||||
|
+ path("unsupported-settings", "allow-tripwire-disarming-exploits")
|
||||||
+ };
|
+ };
|
||||||
+
|
+
|
||||||
+}
|
+}
|
||||||
|
|
Loading…
Reference in a new issue