2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/ChatBaseComponent.java
|
|
|
|
+++ b/net/minecraft/server/ChatBaseComponent.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -112,7 +112,7 @@
|
2015-01-11 19:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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() {
|