mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 02:01:44 +01:00
Arrows use interactable condition
This commit is contained in:
parent
cd36f6f257
commit
cac90f6236
1 changed files with 6 additions and 1 deletions
|
@ -542,7 +542,12 @@
|
|||
|
||||
this.C(entity);
|
||||
}
|
||||
@@ -1781,7 +2045,7 @@
|
||||
@@ -1777,11 +2041,11 @@
|
||||
}
|
||||
|
||||
public boolean isInteractable() {
|
||||
- return !this.dead;
|
||||
+ return !this.dead && this.collides; // CraftBukkit
|
||||
}
|
||||
|
||||
public boolean isCollidable() {
|
||||
|
|
Loading…
Reference in a new issue