Skip to content
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.

Commit

Permalink
Bump initial tick time + actually fix silently tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
robotia committed Mar 21, 2016
1 parent 22cbf5b commit 41d7705
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@
+ return this.worldObj.findingSpawnPoint ||
+ this.loadChunkOnProvideRequest ||
+ (MinecraftServer.callingForgeTick && MinecraftServer.getServer().cauldronConfig.loadChunkOnForgeTick.getValue()) ||
+ (MinecraftServer.currentTick - initialTick <= 100);
+ (MinecraftServer.currentTick - initialTick <= 200);
+ }
+
+ public long lastAccessed(int x, int z)
Expand Down
2 changes: 1 addition & 1 deletion patches/net/minecraftforge/common/ForgeHooks.java.patch
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
+ {
+ world.addEntity(eitm, SpawnReason.DEFAULT); // Same as world.spawnEntity()
+ }
+
+ world.itemStackSpawnQueue.clear();
+ player.addStat(StatList.objectUseStats[Item.getIdFromItem(itemstack.getItem())], 1);
}
- player.addStat(StatList.objectUseStats[Item.getIdFromItem(itemstack.getItem())], 1);
Expand Down

0 comments on commit 41d7705

Please sign in to comment.