From 1205e858618674d4b568652d605c795088522295 Mon Sep 17 00:00:00 2001 From: CannibalVox Date: Sat, 7 Dec 2013 00:36:54 -0600 Subject: [PATCH] Remove unnecessary watcher value set command. --- StevenDimDoors/mod_pocketDim/ticking/MobMonolith.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/StevenDimDoors/mod_pocketDim/ticking/MobMonolith.java b/StevenDimDoors/mod_pocketDim/ticking/MobMonolith.java index 9875a3de..1cbb356e 100644 --- a/StevenDimDoors/mod_pocketDim/ticking/MobMonolith.java +++ b/StevenDimDoors/mod_pocketDim/ticking/MobMonolith.java @@ -50,7 +50,6 @@ public class MobMonolith extends EntityFlying implements IMob public MobMonolith(World par1World) { super(par1World); - this.getDataWatcher().addObject(16,0); this.setSize(3F, 9.0F); this.noClip=true; this.scaleFactor= (float) ((rand.nextDouble()/2)+1); @@ -72,7 +71,7 @@ public class MobMonolith extends EntityFlying implements IMob protected void applyEntityAttributes() { super.applyEntityAttributes(); - this.getAttributeMap().func_111150_b(SharedMonsterAttributes.maxHealth).setAttribute(20); + this.getAttributeMap().getAttributeInstance(SharedMonsterAttributes.maxHealth).setAttribute(20); } public boolean canBePushed()