Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekwav committed Sep 1, 2024
1 parent 44295c3 commit 94cf6e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/OptionsMenu/OptionsMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,14 @@ function OptionsMenu(props: Props) {
if (isItemPage) {
let name = props.selected?.name
let tag = (props.selected as Item).tag
available.push({ title: 'Wiki', url: 'https://hypixel-skyblock.fandom.com/wiki/' + name })
available.push({ title: 'Fandom', url: 'https://hypixel-skyblock.fandom.com/wiki/' + name })
available.push({ title: 'Wiki', url: 'https://wiki.hypixel.net/' + name })
if ((props.selected as Item).bazaar) {
available.push({ title: 'Skyblock.bz', url: 'https://Skyblock.bz/product/' + tag })
}
} else if (isPlayerPage) {
let player = props.selected as Player
available.push({ title: 'SkyCrypt', url: 'https://skycrypt.coflnet.com/stats/' + player?.uuid })
available.push({ title: 'SkyCrypt', url: 'https://sky.shiiyu.moe//stats/' + player?.uuid })
available.push({ title: 'Plancke', url: 'https://plancke.io/hypixel/player/stats/' + player?.uuid })
}

Expand Down

0 comments on commit 94cf6e1

Please sign in to comment.