mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
24 lines
868 B
Diff
24 lines
868 B
Diff
From 561aaac2d5dc20515d3b4161fa880b9ba70962b0 Mon Sep 17 00:00:00 2001
|
|
From: md_5 <md_5@live.com.au>
|
|
Date: Sun, 19 May 2013 18:29:48 +1000
|
|
Subject: [PATCH] Remove -o Option
|
|
|
|
Serves no purpose other than to confuse users.
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PropertyManager.java b/src/main/java/net/minecraft/server/PropertyManager.java
|
|
index 856ae39..0ee7fe8 100644
|
|
--- a/src/main/java/net/minecraft/server/PropertyManager.java
|
|
+++ b/src/main/java/net/minecraft/server/PropertyManager.java
|
|
@@ -54,7 +54,7 @@ public class PropertyManager {
|
|
}
|
|
|
|
private <T> T getOverride(String name, T value) {
|
|
- if ((this.options != null) && (this.options.has(name))) {
|
|
+ if ((this.options != null) && (this.options.has(name)) && !name.equals( "online-mode")) { // Spigot
|
|
return (T) this.options.valueOf(name);
|
|
}
|
|
|
|
--
|
|
2.1.4
|
|
|