From d5725cc887990e6f6ef4f7ea4c7d196960fa9bbd Mon Sep 17 00:00:00 2001 From: Goldenrevolver Date: Thu, 9 Jul 2020 15:43:18 +0200 Subject: [PATCH] Removed accidentally added test method --- common/src/terrain/block.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/common/src/terrain/block.rs b/common/src/terrain/block.rs index 6502f715c0..13096dda77 100644 --- a/common/src/terrain/block.rs +++ b/common/src/terrain/block.rs @@ -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,