mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
26 lines
432 B
Java
26 lines
432 B
Java
package com.hbm.blocks;
|
|
|
|
import net.minecraft.block.material.MapColor;
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class MaterialGas extends Material {
|
|
|
|
public MaterialGas() {
|
|
super(MapColor.airColor);
|
|
this.setNoPushMobility();
|
|
this.setReplaceable();
|
|
}
|
|
|
|
public boolean isSolid() {
|
|
return true;
|
|
}
|
|
|
|
public boolean getCanBlockGrass() {
|
|
return false;
|
|
}
|
|
|
|
public boolean blocksMovement() {
|
|
return false;
|
|
}
|
|
}
|