Removed accidentally added test method

This commit is contained in:
Goldenrevolver 2020-07-09 15:43:18 +02:00
parent 5f077e880d
commit d5725cc887

View File

@ -97,13 +97,6 @@ impl BlockKind {
}
}
pub fn is_tangible2(&self) -> bool {
match self {
BlockKind::Air => false,
kind => !kind.is_fluid(),
}
}
pub fn is_air(&self) -> bool {
match self {
BlockKind::Air => true,