Implement bounty trials

This commit is contained in:
Melledy
2025-10-29 09:38:47 -07:00
parent e2ad0d5fe3
commit d024ab62a8
25 changed files with 986 additions and 4 deletions
@@ -70,7 +70,7 @@ public class ItemParamMap extends Int2IntOpenHashMap {
return list;
}
public Stream<ItemTpl> itemTemplateStream() {
public Stream<ItemTpl> toItemTemplateStream() {
return getEntrySet()
.stream()
.map(e -> ItemTpl.newInstance().setTid(e.getIntKey()).setQty(e.getIntValue()));