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/util/FormattedCharSequence.java
+++ b/net/minecraft/util/FormattedCharSequence.java
@@ -32,7 +_,7 @@
}
static FormattedCharSink decorateOutput(FormattedCharSink sink, Int2IntFunction codePointMapper) {
- return (index, style, codePoint) -> sink.accept(index, style, codePointMapper.apply(Integer.valueOf(codePoint)));
+ return (index, style, codePoint) -> sink.accept(index, style, codePointMapper.apply(codePoint));
}
static FormattedCharSequence composite() {