Replace deprecated slipperiness field access with getter
This commit is contained in:
@@ -28,7 +28,7 @@ public class BlockStatue extends BlockContainer {
|
|||||||
super(material);
|
super(material);
|
||||||
this.isIce = material == Material.ICE;
|
this.isIce = material == Material.ICE;
|
||||||
if(this.isIce){
|
if(this.isIce){
|
||||||
this.slipperiness = 0.98F;
|
this.setDefaultSlipperiness(0.98f);
|
||||||
this.setSoundType(SoundType.GLASS);
|
this.setSoundType(SoundType.GLASS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user