Skip to content

Commit

Permalink
fix: inverted infos in warrior profile
Browse files Browse the repository at this point in the history
  • Loading branch information
ySnoopyDogy committed Oct 25, 2023
1 parent 77ec896 commit 62197c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderers/profiles/warrior.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ func RenderWarrior(User *utils.UserData, I18n *utils.I18n, customEdits []string,
ctx.DrawStringWrapped(User.Marry.Username+" "+strings.Split(User.MarryDate, " ")[0], 380, 170, 0, 0.5, 600, 1, 0)

ctx.SetFontFace(*utils.GetFont("Sans", 28))
ctx.DrawStringWrapped(I18n.Mamado+"\n"+strconv.Itoa(int(User.Mamou)), 940, 100, 0.5, 0.5, 600, 1, 1)
ctx.DrawStringWrapped(I18n.Mamou+"\n"+strconv.Itoa(int(User.Mamadas)), 940, 170, 0.5, 0.5, 600, 1, 1)
ctx.DrawStringWrapped(I18n.Mamado+"\n"+strconv.Itoa(int(User.Mamadas)), 940, 100, 0.5, 0.5, 600, 1, 1)
ctx.DrawStringWrapped(I18n.Mamou+"\n"+strconv.Itoa(int(User.Mamou)), 940, 170, 0.5, 0.5, 600, 1, 1)

utils.DrawBadges(ctx, User, 110, 620)

Expand Down

0 comments on commit 62197c8

Please sign in to comment.