diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-14 18:17:53 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-14 18:17:53 +0800 |
commit | 9ffe3b2c22e30974087d4812bc757155f09d6e57 (patch) | |
tree | 3af726747089775e4f6da2b2f0b1d9f8b612d8aa /features/cosmetics | |
parent | 598dadc9efadf69401f08d27e5b0ff1b36a0f2bc (diff) | |
download | SoopyV2-9ffe3b2c22e30974087d4812bc757155f09d6e57.tar.gz SoopyV2-9ffe3b2c22e30974087d4812bc757155f09d6e57.tar.bz2 SoopyV2-9ffe3b2c22e30974087d4812bc757155f09d6e57.zip |
+ Update website url
Diffstat (limited to 'features/cosmetics')
-rw-r--r-- | features/cosmetics/cosmetic/dragon/dragonWings.js | 2 | ||||
-rw-r--r-- | features/cosmetics/index.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/features/cosmetics/cosmetic/dragon/dragonWings.js b/features/cosmetics/cosmetic/dragon/dragonWings.js index fc447d3..a309e58 100644 --- a/features/cosmetics/cosmetic/dragon/dragonWings.js +++ b/features/cosmetics/cosmetic/dragon/dragonWings.js @@ -19,7 +19,7 @@ let loadingTextures = new Set() function loadTexture(id) { new Thread(() => { loadingTextures.add(id) - textures.set(id, renderLibs.getImage("http://soopymc.my.to/api/soopyv2/textures/cosmetic/dragon/" + id + "/img.png", true)) + textures.set(id, renderLibs.getImage("http://soopy.dev/api/soopyv2/textures/cosmetic/dragon/" + id + "/img.png", true)) }).start() } loadTexture("classic") diff --git a/features/cosmetics/index.js b/features/cosmetics/index.js index 6c832ef..dcac5e9 100644 --- a/features/cosmetics/index.js +++ b/features/cosmetics/index.js @@ -84,7 +84,7 @@ class Cosmetics extends Feature { } loadCosmeticsData() { - fetch("http://soopymc.my.to/api/soopyv2/cosmetics.json").json(data => { + fetch("http://soopy.dev/api/soopyv2/cosmetics.json").json(data => { this.cosmeticsData = data this.playerHasACosmeticA = !!data[Player.getUUID().toString().replace(/-/g, "")] if (this.playerHasACosmeticA && !this.postRenderEntityTrigger) { |