From f3f61e7a4a709c806a04a5ada5f3ae51f8d4c8a7 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Wed, 27 Nov 2013 17:41:39 +0100 Subject: [PATCH] Cobblestone Walls height handling --- src/world/Entity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/Entity.php b/src/world/Entity.php index 61c63553c..695eb1c31 100644 --- a/src/world/Entity.php +++ b/src/world/Entity.php @@ -427,7 +427,7 @@ class Entity extends Position{ $support = true; $isFlying = false; break; - }elseif(($b instanceof LiquidBlock) or $b->getID() === COBWEB or $b->getID() === LADDER or $b->getID() === FENCE){ + }elseif(($b instanceof LiquidBlock) or $b->getID() === COBWEB or $b->getID() === LADDER or $b->getID() === FENCE or $b->getID() === STONE_WALL){ $isFlying = false; } }