Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LarmuseauNiels committed Apr 26, 2023
1 parent 3dd007c commit ce02dfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions islander/AchievementsModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ export class AchievementsModule {
.setCustomStatusColor("#00FF00")
.setProgressBar("#00FF00", "COLOR")
.setBackground("COLOR", "#2b2f35")
.setOverlay("#2b2f35", 0.4)
.setProgressBarTrack("#2b2f35");
.setOverlay("#2b2f35", 0.4);

const data = await rank.build();
return new AttachmentBuilder(data, {
Expand Down
2 changes: 1 addition & 1 deletion islander/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ export default class Rank {
for (const achievement of this.data.achievementToRender) {
//const index = this.data.achievementsToRender.indexOf(achievement);
let badge = await Canvas.loadImage(achievement.imagePath);
ctx.drawImage(badge, achievementXlocation, 164, 64, 64);
ctx.drawImage(badge, achievementXlocation, 100, 64, 64);
achievementXlocation += 64;
}

Expand Down

0 comments on commit ce02dfc

Please sign in to comment.