Check up to maxChairWidth blocks when searching for signs
This commit is contained in:
parent
c50a844484
commit
93e678e749
@ -232,7 +232,7 @@ public class TrySitEventListener implements Listener {
|
|||||||
|
|
||||||
private boolean checkSign(Block block, BlockFace face) {
|
private boolean checkSign(Block block, BlockFace face) {
|
||||||
// Go through the blocks next to the clicked block and check if are signs on the end.
|
// Go through the blocks next to the clicked block and check if are signs on the end.
|
||||||
for (int i = 1; i <= 100; i++) {
|
for (int i = 1; i <= plugin.maxChairWidth + 1; i++) {
|
||||||
Block relative = block.getRelative(face, i);
|
Block relative = block.getRelative(face, i);
|
||||||
if (checkDirection(block, relative)) {
|
if (checkDirection(block, relative)) {
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user