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.
		
		
		
		
		
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			643 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			34 lines
		
	
	
		
			643 B
		
	
	
	
		
			Java
		
	
package net.minecraft.block.material;
 | 
						|
 | 
						|
public class MaterialLiquid extends Material
 | 
						|
{
 | 
						|
    private static final String __OBFID = "CL_00000541";
 | 
						|
 | 
						|
    public MaterialLiquid(MapColor p_i2114_1_)
 | 
						|
    {
 | 
						|
        super(p_i2114_1_);
 | 
						|
        this.setReplaceable();
 | 
						|
        this.setNoPushMobility();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns if blocks of these materials are liquids.
 | 
						|
     */
 | 
						|
    public boolean isLiquid()
 | 
						|
    {
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns if this material is considered solid or not
 | 
						|
     */
 | 
						|
    public boolean blocksMovement()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    public boolean isSolid()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
} |