mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 04:17:07 +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;
|
$support = true;
|
||||||
$isFlying = false;
|
$isFlying = false;
|
||||||
break;
|
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;
|
$isFlying = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user