Skip to content

Commit

Permalink
Merge pull request #935 from johanfriis/patch-1
Browse files Browse the repository at this point in the history
Enable BlockStatePredicate list sizes of 1
  • Loading branch information
LatvianModder authored Jan 21, 2025
2 parents 6f1e556 + e08a433 commit e8beb89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static BlockStatePredicate wrap(Context cx, Object o) {

if (list.isEmpty()) {
return Simple.NONE;
} else if (list.size() > 1) {
} else {
var predicates = new ArrayList<BlockStatePredicate>();

for (var o1 : list) {
Expand Down

0 comments on commit e8beb89

Please sign in to comment.