fixed silver, gold, copper, tin ingots not showing correctly in crafting

This commit is contained in:
Makselord 2022-05-26 17:08:39 -04:00
parent 3b6e6be947
commit 5c8c88b786
4 changed files with 4 additions and 4 deletions

View File

@ -5,5 +5,5 @@ ItemDef(
descriptor: "Copper",
),
quality: Low,
tags: [],
tags: [MaterialKind(Metal)],
)

View File

@ -5,5 +5,5 @@ ItemDef(
descriptor: "Golden",
),
quality: Epic,
tags: [],
tags: [MaterialKind(Metal)],
)

View File

@ -5,5 +5,5 @@ ItemDef(
descriptor: "Silver",
),
quality: Epic,
tags: [],
tags: [MaterialKind(Metal)],
)

View File

@ -5,5 +5,5 @@ ItemDef(
descriptor: "Tin",
),
quality: Common,
tags: [],
tags: [MaterialKind(Metal)],
)