diff options
author | mat <github@matdoes.dev> | 2022-03-05 12:29:53 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-03-05 12:29:53 -0600 |
commit | 478b6ea8a50bbf372921990775d3fd480446f350 (patch) | |
tree | afbcb88aa76c47772407b6adfde0b4391a609032 /src/lib/sections | |
parent | 0e62ed65d81081a7cc912bfb85cf3880f2d90521 (diff) | |
download | skyblock-stats-478b6ea8a50bbf372921990775d3fd480446f350.tar.gz skyblock-stats-478b6ea8a50bbf372921990775d3fd480446f350.tar.bz2 skyblock-stats-478b6ea8a50bbf372921990775d3fd480446f350.zip |
replace cdn.matdoes.dev with local requests
Diffstat (limited to 'src/lib/sections')
-rw-r--r-- | src/lib/sections/Skills.svelte | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/sections/Skills.svelte b/src/lib/sections/Skills.svelte index 6e1efdb..fd720f9 100644 --- a/src/lib/sections/Skills.svelte +++ b/src/lib/sections/Skills.svelte @@ -3,16 +3,16 @@ import { cleanId, formatNumber } from '$lib/utils' const skillImages = { - runecrafting: 'https://cdn.matdoes.dev/images/runescape/runecrafting.webp', - alchemy: 'https://cdn.matdoes.dev/images/runescape/herblore.webp', - combat: 'https://cdn.matdoes.dev/images/runescape/attack.webp', - enchanting: 'https://cdn.matdoes.dev/images/runescape/magic.webp', - foraging: 'https://cdn.matdoes.dev/images/runescape/woodcutting.webp', - mining: 'https://cdn.matdoes.dev/images/runescape/mining.webp', - taming: 'https://cdn.matdoes.dev/images/runescape/hunter.webp', - farming: 'https://cdn.matdoes.dev/images/runescape/farming.webp', - fishing: 'https://cdn.matdoes.dev/images/runescape/fishing.webp', - carpentry: 'https://cdn.matdoes.dev/images/runescape/construction.webp', + runecrafting: '/skill-icons/runecrafting.webp', + alchemy: '/skill-icons/herblore.webp', + combat: '/skill-icons/attack.webp', + enchanting: '/skill-icons/magic.webp', + foraging: '/skill-icons/woodcutting.webp', + mining: '/skill-icons/mining.webp', + taming: '/skill-icons/hunter.webp', + farming: '/skill-icons/farming.webp', + fishing: '/skill-icons/fishing.webp', + carpentry: '/skill-icons/construction.webp', } export let data |