summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/FoodMetaData.java
diff options
context:
space:
mode:
authorNathan Adams <dinnerbone@dinnerbone.com>2011-11-29 23:17:43 +0000
committerNathan Adams <dinnerbone@dinnerbone.com>2011-11-30 21:46:19 +0000
commit8fbe78a2c3b65f4140c4d0db4bed5a9bcdaf1792 (patch)
treecc229f65097c54cfcd769f686c43efa1dacc8d2f /src/main/java/net/minecraft/server/FoodMetaData.java
parent8665161eaa0160467ce33598c13f1aed4b549a4d (diff)
downloadcraftbukkit-8fbe78a2c3b65f4140c4d0db4bed5a9bcdaf1792.tar
craftbukkit-8fbe78a2c3b65f4140c4d0db4bed5a9bcdaf1792.tar.gz
craftbukkit-8fbe78a2c3b65f4140c4d0db4bed5a9bcdaf1792.tar.lz
craftbukkit-8fbe78a2c3b65f4140c4d0db4bed5a9bcdaf1792.tar.xz
craftbukkit-8fbe78a2c3b65f4140c4d0db4bed5a9bcdaf1792.zip
Updated to use mc-dev rename revision 1
Diffstat (limited to 'src/main/java/net/minecraft/server/FoodMetaData.java')
-rw-r--r--src/main/java/net/minecraft/server/FoodMetaData.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/net/minecraft/server/FoodMetaData.java b/src/main/java/net/minecraft/server/FoodMetaData.java
index 854b79cb..ad7a7a30 100644
--- a/src/main/java/net/minecraft/server/FoodMetaData.java
+++ b/src/main/java/net/minecraft/server/FoodMetaData.java
@@ -76,18 +76,18 @@ public class FoodMetaData {
public void a(NBTTagCompound nbttagcompound) {
if (nbttagcompound.hasKey("foodLevel")) {
- this.foodLevel = nbttagcompound.f("foodLevel");
- this.foodTickTimer = nbttagcompound.f("foodTickTimer");
- this.saturationLevel = nbttagcompound.h("foodSaturationLevel");
- this.exhaustionLevel = nbttagcompound.h("foodExhaustionLevel");
+ this.foodLevel = nbttagcompound.getInt("foodLevel");
+ this.foodTickTimer = nbttagcompound.getInt("foodTickTimer");
+ this.saturationLevel = nbttagcompound.getFloat("foodSaturationLevel");
+ this.exhaustionLevel = nbttagcompound.getFloat("foodExhaustionLevel");
}
}
public void b(NBTTagCompound nbttagcompound) {
- nbttagcompound.a("foodLevel", this.foodLevel);
- nbttagcompound.a("foodTickTimer", this.foodTickTimer);
- nbttagcompound.a("foodSaturationLevel", this.saturationLevel);
- nbttagcompound.a("foodExhaustionLevel", this.exhaustionLevel);
+ nbttagcompound.setInt("foodLevel", this.foodLevel);
+ nbttagcompound.setInt("foodTickTimer", this.foodTickTimer);
+ nbttagcompound.setFloat("foodSaturationLevel", this.saturationLevel);
+ nbttagcompound.setFloat("foodExhaustionLevel", this.exhaustionLevel);
}
public int a() {