Always use qualified access for fields and methods

This commit is contained in:
yueh
2017-07-20 21:27:22 +02:00
parent f9cad0758d
commit 15582fd1df
211 changed files with 1086 additions and 1086 deletions
@@ -68,7 +68,7 @@ public class MetaRotation implements IOrientable
if( this.facingProp != null )
{
return state.getValue( facingProp );
return state.getValue( this.facingProp );
}
// TODO 1.10.2-R - Temp
@@ -96,9 +96,9 @@ public class MetaRotation implements IOrientable
{
if( this.w instanceof World )
{
if( facingProp != null )
if( this.facingProp != null )
{
( (World) this.w ).setBlockState( this.pos, this.w.getBlockState( this.pos ).withProperty( facingProp, up ) );
( (World) this.w ).setBlockState( this.pos, this.w.getBlockState( this.pos ).withProperty( this.facingProp, up ) );
}
else
{