2014-03-09 23:14:45 +01:00
|
|
|
From c2b9cd210346b051c5dd59c2e3ff1c505b352622 Mon Sep 17 00:00:00 2001
|
2013-12-22 00:00:13 +01:00
|
|
|
From: DerFlash <bte@freenet.de>
|
|
|
|
Date: Tue, 9 Jul 2013 00:11:12 +0200
|
|
|
|
Subject: [PATCH] Save ticks lived to nbttag
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2014-01-31 21:42:29 +01:00
|
|
|
index d8d5739..5826b50 100644
|
2013-12-22 00:00:13 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2014-01-31 21:42:29 +01:00
|
|
|
@@ -1132,6 +1132,7 @@ public abstract class Entity {
|
2013-12-22 00:00:13 +01:00
|
|
|
nbttagcompound.setLong("WorldUUIDLeast", this.world.getDataManager().getUUID().getLeastSignificantBits());
|
|
|
|
nbttagcompound.setLong("WorldUUIDMost", this.world.getDataManager().getUUID().getMostSignificantBits());
|
|
|
|
nbttagcompound.setInt("Bukkit.updateLevel", CURRENT_LEVEL);
|
|
|
|
+ nbttagcompound.setInt("Spigot.ticksLived", this.ticksLived);
|
|
|
|
// CraftBukkit end
|
|
|
|
this.b(nbttagcompound);
|
|
|
|
if (this.vehicle != null) {
|
2014-01-31 21:42:29 +01:00
|
|
|
@@ -1200,6 +1201,8 @@ public abstract class Entity {
|
2013-12-22 00:00:13 +01:00
|
|
|
if (this instanceof EntityLiving) {
|
|
|
|
EntityLiving entity = (EntityLiving) this;
|
|
|
|
|
|
|
|
+ this.ticksLived = nbttagcompound.getInt("Spigot.ticksLived");
|
|
|
|
+
|
|
|
|
// Reset the persistence for tamed animals
|
|
|
|
if (entity instanceof EntityTameableAnimal && !isLevelAtLeast(nbttagcompound, 2) && !nbttagcompound.getBoolean("PersistenceRequired")) {
|
|
|
|
EntityInsentient entityinsentient = (EntityInsentient) entity;
|
|
|
|
--
|
2014-03-09 22:37:28 +01:00
|
|
|
1.8.3.2
|
2013-12-22 00:00:13 +01:00
|
|
|
|