Skip to content

Commit

Permalink
Update alliance.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen3H committed Jul 22, 2024
1 parent dc5c124 commit b21339c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aurora/commands/alliance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ async function sendSingleAlliance(
}
}

leaderSet.add(leader.name)
leaderSet.add(backtick(leader.name))
}

const rank = foundAlliance.rank > 0 ? ` | #${foundAlliance.rank}` : ``
Expand All @@ -1189,7 +1189,7 @@ async function sendSingleAlliance(

const allianceEmbed = new CustomEmbed(client, `(Aurora) Alliance Info | ${getName(foundAlliance)}${rank}`)
.addFields(
embedField("Leader(s)", backtick(leadersStr), false),
embedField("Leader(s)", leadersStr, false),
embedField("Type", backtick(allianceType), true),
//embedField("Wealth", `\`${foundAlliance.wealth}\`G`, true),
embedField("Size", backtick(Math.round(foundAlliance.area), { postfix: " Chunks" }), true),
Expand Down

0 comments on commit b21339c

Please sign in to comment.