mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fix build
This commit is contained in:
parent
fb216459b5
commit
0be4aa1b4f
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ public interface URecipes {
|
|||
LootTable table = manager.getLootTable(modId);
|
||||
|
||||
if (table != LootTable.EMPTY) {
|
||||
if (id.getPath().startsWith("blocks/") || supplier.build().pools.length == 0) {
|
||||
if (id.getPath().startsWith("blocks/") || supplier.build().pools.isEmpty()) {
|
||||
for (var pool : table.pools) {
|
||||
supplier.pool(pool);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue