Merge branch 'makselord/ingots' into 'master'

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

See merge request veloren/veloren!3402
This commit is contained in:
Samuel Keiffer 2022-05-26 22:13:33 +00:00
commit 8b7f08e8ab
4 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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