Easier way to find what does field and method mean in obfuscated minecraft mod code. Latest builds seen here.
- From java obfucated class to real answers
protected void func_110147_ax() {
super.func_110147_ax();
this.func_110148_a(SharedMonsterAttributes.field_111263_d).func_111128_a(0.30000001192092896);
this.func_110148_a(SharedMonsterAttributes.field_111267_a).func_111128_a(10.0);
}
- To
protected void applyEntityAttributes() {
super.applyEntityAttributes();
this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(0.30000001192092896);
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(10.0);
}
- Debug
- x64