mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-02 06:57:30 +01:00
SPIGOT-5341: Add Material.isAir
This commit is contained in:
parent
683bae0670
commit
46351e1783
1 changed files with 9 additions and 0 deletions
|
@ -195,6 +195,15 @@ public class PerMaterialTest extends AbstractTestingBase {
|
|||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAir() {
|
||||
if (material.isBlock()) {
|
||||
assertThat(material.isAir(), is(equalTo(CraftMagicNumbers.getBlock(material).getBlockData().isAir())));
|
||||
} else {
|
||||
assertThat(material.isAir(), is(equalTo(false)));
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testItem() {
|
||||
if (material == Material.AIR) {
|
||||
|
|
Loading…
Add table
Reference in a new issue