Skip to content

Commit

Permalink
Merge pull request #78 from Madis0/patch-5
Browse files Browse the repository at this point in the history
Fix Cosmetica to use HTTPS
  • Loading branch information
CaelTheColher authored Dec 15, 2022
2 parents dd830e8 + d285829 commit 9f96fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/me/cael/capes/CapeType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum class CapeType(val stylized: String) {
OPTIFINE -> if(config.enableOptifine) "http://s.optifine.net/capes/${profile.name}.png" else null
LABYMOD -> if(config.enableLabyMod) "https://dl.labymod.net/capes/${profile.id}" else null
WYNNTILS -> if(config.enableWynntils) "https://athena.wynntils.com/user/getInfo" else null
COSMETICA -> if(config.enableCosmetica) "http://api.cosmetica.cc/get/cloak?username=${profile.name}&uuid=${profile.id}&nothirdparty" else null
COSMETICA -> if(config.enableCosmetica) "https://api.cosmetica.cc/get/cloak?username=${profile.name}&uuid=${profile.id}&nothirdparty" else null
MINECRAFTCAPES -> if(config.enableMinecraftCapesMod) "https://minecraftcapes.net/profile/${profile.id.toString().replace("-", "")}" else null
CLOAKSPLUS -> if(config.enableCloaksPlus) "http://161.35.130.99/capes/${profile.name}.png" else null
MINECRAFT -> null
Expand Down

0 comments on commit 9f96fea

Please sign in to comment.