mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-06 03:47:16 +00:00
Merge pull request #634 from williamtdr/patch-1
Fix for fly kick when player is standing on Fence
This commit is contained in:
commit
a60d41d489
@ -400,7 +400,7 @@ class Entity extends Position{
|
||||
$support = true;
|
||||
$isFlying = false;
|
||||
break;
|
||||
}elseif(($b instanceof LiquidBlock) or $b->getID() === COBWEB or $b->getID() === LADDER){
|
||||
}elseif(($b instanceof LiquidBlock) or $b->getID() === COBWEB or $b->getID() === LADDER or $b->getID() === FENCE){
|
||||
$isFlying = false;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user