fix: Dungeon swords not being recognized for reforges

This commit is contained in:
Linnea Gräf
2024-12-31 17:51:29 +01:00
parent a50de16018
commit bb124fe91d
7 changed files with 7 additions and 83 deletions

View File

@@ -68,6 +68,7 @@ object ReforgeStore : ExtraRecipeProvider, IReloadable {
val actualItemTypes = resolveItemType(eligibleItem.itemType)
for (itemType in actualItemTypes) {
byType.getOrPut(itemType, ::mutableListOf).add(reforge)
byType.getOrPut(itemType.dungeonVariant, ::mutableListOf).add(reforge)
}
}