Skip to content

Commit

Permalink
Merge pull request #1280 from Parkusisafk/reiterate-duplex
Browse files Browse the repository at this point in the history
reiterate->duplex.tsx
  • Loading branch information
matthias-luger authored Jul 9, 2024
2 parents 6a6df13 + c707ea3 commit d2229b2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/AuctionDetails/AuctionDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,11 @@ function AuctionDetails(props: Props) {
{auctionDetails && auctionDetails!.enchantments.length > 0 ? (
<ul className={styles.list}>
{auctionDetails?.enchantments.map(enchantment => {
if(enchantment.name === "Ultimate Reiterate"){
enchantment.name = "Ultimate Duplex";
}
let enchantmentString = <span>{enchantment.name}</span>

if (enchantment.color) {
enchantmentString = getMinecraftColorCodedElement(enchantment.color + enchantment.name + ' ' + enchantment.level)
}
Expand Down

0 comments on commit d2229b2

Please sign in to comment.