Remove unnecessary client features

This commit is contained in:
AlphaKR93
2025-02-23 17:48:16 +09:00
parent e286d62894
commit 8b0a4c75c5
290 changed files with 17716 additions and 63 deletions

View File

@@ -0,0 +1,11 @@
--- a/net/minecraft/server/dedicated/Settings.java
+++ b/net/minecraft/server/dedicated/Settings.java
@@ -216,7 +_,7 @@
}
protected int get(String key, int defaultValue) {
- return this.get(key, wrapNumberDeserializer(Integer::parseInt), Integer.valueOf(defaultValue));
+ return this.get(key, wrapNumberDeserializer(Integer::parseInt), defaultValue);
}
protected Settings<T>.MutableValue<Integer> getMutable(String key, int defaultValue) {