You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			672 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			33 lines
		
	
	
		
			672 B
		
	
	
	
		
			Java
		
	
package net.minecraft.block.material;
 | 
						|
 | 
						|
public class MaterialLogic extends Material
 | 
						|
{
 | 
						|
    private static final String __OBFID = "CL_00000539";
 | 
						|
 | 
						|
    public MaterialLogic(MapColor p_i2112_1_)
 | 
						|
    {
 | 
						|
        super(p_i2112_1_);
 | 
						|
        this.setAdventureModeExempt();
 | 
						|
    }
 | 
						|
 | 
						|
    public boolean isSolid()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Will prevent grass from growing on dirt underneath and kill any grass below it if it returns true
 | 
						|
     */
 | 
						|
    public boolean getCanBlockGrass()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns if this material is considered solid or not
 | 
						|
     */
 | 
						|
    public boolean blocksMovement()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
} |