Updated to use mc-dev rename revision 1

This commit is contained in:
Nathan Adams
2011-11-29 23:17:43 +00:00
parent 8665161eaa
commit 8fbe78a2c3
117 changed files with 907 additions and 1161 deletions

View File

@@ -35,7 +35,7 @@ public class EntitySpider extends EntityMonster {
}
public double q() {
return (double) this.width * 0.75D - 0.5D;
return (double) this.length * 0.75D - 0.5D;
}
protected boolean g_() {
@@ -48,7 +48,7 @@ public class EntitySpider extends EntityMonster {
if (f < 0.5F) {
double d0 = 16.0D;
return this.world.b(this, d0);
return this.world.findNearbyVulnerablePlayer(this, d0);
} else {
return null;
}
@@ -112,8 +112,8 @@ public class EntitySpider extends EntityMonster {
return Item.STRING.id;
}
protected void a(boolean flag, int i) {
super.a(flag, i);
protected void dropDeathLoot(boolean flag, int i) {
super.dropDeathLoot(flag, i);
if (flag && (this.random.nextInt(3) == 0 || this.random.nextInt(1 + i) > 0)) {
this.b(Item.SPIDER_EYE.id, 1);
}
@@ -125,8 +125,8 @@ public class EntitySpider extends EntityMonster {
public void s() {}
public EnchantmentDamage t() {
return EnchantmentDamage.c;
public MonsterType getMonsterType() {
return MonsterType.ARTHROPOD;
}
public boolean a(MobEffect mobeffect) {