mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 11:45:52 -07:00
Update to mcdev rename revision 01 for 1.8.1
This commit is contained in:
@@ -24,7 +24,7 @@ public class EntityCreeper extends EntityMonster {
|
||||
|
||||
public void b(NBTTagCompound nbttagcompound) {
|
||||
super.b(nbttagcompound);
|
||||
if (this.datawatcher.a(17) == 1) {
|
||||
if (this.datawatcher.getByte(17) == 1) {
|
||||
nbttagcompound.a("powered", true);
|
||||
}
|
||||
}
|
||||
@@ -129,7 +129,7 @@ public class EntityCreeper extends EntityMonster {
|
||||
}
|
||||
|
||||
public boolean isPowered() {
|
||||
return this.datawatcher.a(17) == 1;
|
||||
return this.datawatcher.getByte(17) == 1;
|
||||
}
|
||||
|
||||
protected int k() {
|
||||
@@ -137,7 +137,7 @@ public class EntityCreeper extends EntityMonster {
|
||||
}
|
||||
|
||||
private int w() {
|
||||
return this.datawatcher.a(16);
|
||||
return this.datawatcher.getByte(16);
|
||||
}
|
||||
|
||||
private void b(int i) {
|
||||
|
Reference in New Issue
Block a user