Add hasCollision methods to various places

This commit is contained in:
Jake Potrebic
2021-11-04 11:50:35 -07:00
parent 450f5fe793
commit 1de93777a5
4 changed files with 40 additions and 0 deletions

View File

@@ -486,6 +486,13 @@ public interface Block extends Metadatable, Translatable, net.kyori.adventure.tr
* @return true if block is solid
*/
boolean isSolid();
/**
* Checks if this block is collidable.
*
* @return true if collidable
*/
boolean isCollidable();
// Paper end
/**