test: Added some tests for annotations

This commit is contained in:
2025-03-08 12:50:38 +01:00
parent e9f753da3d
commit 70c77cb5fb
10 changed files with 218 additions and 1 deletions

View File

@ -81,7 +81,7 @@ public class ItemBlockSupplier {
if (dropsList.get(key).equals(item.getId())) {
block.setDrops(List.of(item));
} else {
block.setDrops(List.of(getItem(dropsList.get(key), block))); // Todo: Add block reference
block.setDrops(List.of(getItem(dropsList.get(key), block)));
}
return block;