mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-05 16:49:30 +00:00
11 lines
369 B
Diff
11 lines
369 B
Diff
--- a/net/minecraft/server/ChatBaseComponent.java
|
|
+++ b/net/minecraft/server/ChatBaseComponent.java
|
|
@@ -112,7 +112,7 @@
|
|
}
|
|
|
|
public int hashCode() {
|
|
- return 31 * this.b.hashCode() + this.a.hashCode();
|
|
+ return 31 * this.getChatModifier().hashCode() + this.a.hashCode(); // CraftBukkit - fix null pointer
|
|
}
|
|
|
|
public String toString() {
|