From ca526026d1d2cc6cec2ef504ce105028dd19baa9 Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Sat, 18 Apr 2020 21:46:39 +0100 Subject: [PATCH] Made tomatoes taller --- common/src/terrain/block.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/terrain/block.rs b/common/src/terrain/block.rs index b78fe69434..67b65ac8e8 100644 --- a/common/src/terrain/block.rs +++ b/common/src/terrain/block.rs @@ -212,6 +212,7 @@ impl BlockKind { // Beware: the height *must* be <= `MAX_HEIGHT` or the collision system will not properly // detect it! match self { + BlockKind::Tomato => 1.65, BlockKind::LargeCactus => 2.5, _ => 1.0, }