1
0
Fork 0

Fix collision of NextTickListEntry (close #289)

kcx-1614
Sergey 2016-01-31 18:39:40 +07:00
parent 32dc3664a6
commit a5277c151e
2 changed files with 12 additions and 1 deletions

View File

@ -1818,7 +1818,7 @@
finally
{
@@ -1135,19 +2442,18 @@
{
if (itemstack.getItem() == Items.written_book && itemstack1.getItem() == Items.writable_book)
{
- itemstack1.setTagInfo("author", new NBTTagString(this.playerEntity.getCommandSenderName()));

View File

@ -0,0 +1,11 @@
--- ../src-base/minecraft/net/minecraft/world/NextTickListEntry.java
+++ ../src-work/minecraft/net/minecraft/world/NextTickListEntry.java
@@ -38,7 +38,7 @@
public int hashCode()
{
- return (this.xCoord * 1024 * 1024 + this.zCoord * 1024 + this.yCoord) * 256;
+ return (int) (tickEntryID & 0xFFFFFFFF);
}
public NextTickListEntry setScheduledTime(long p_77176_1_)