mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
All .AddField calls no longer use builder
- Cleaned up convertlist and listserver embeds slightly
This commit is contained in:
@@ -569,9 +569,7 @@ namespace NadekoBot.Modules.Gambling
|
||||
var usrStr = x.ToString().TrimTo(20, true);
|
||||
|
||||
var j = i;
|
||||
embed.AddField(efb => efb.WithName("#" + (9 * curPage + j + 1) + " " + usrStr)
|
||||
.WithValue(n(x.CurrencyAmount) + " " + CurrencySign)
|
||||
.WithIsInline(true));
|
||||
embed.AddField("#" + (9 * curPage + j + 1) + " " + usrStr, n(x.CurrencyAmount) + " " + CurrencySign, true);
|
||||
}
|
||||
|
||||
return embed;
|
||||
|
Reference in New Issue
Block a user