mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
12 lines
478 B
Diff
12 lines
478 B
Diff
--- /home/matt/mc-dev-private//net/minecraft/server/ChatBaseComponent.java 2015-02-26 22:40:22.295608143 +0000
|
|
+++ src/main/java/net/minecraft/server/ChatBaseComponent.java 2015-02-26 22:40:22.299608143 +0000
|
|
@@ -111,7 +111,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() {
|