fixed .iam
fixed .sclr not being respected on many different commands .rps now also has the amount bet
This commit is contained in:
parent
ae54270d58
commit
65b7342421
9 changed files with 38 additions and 23 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -2,6 +2,17 @@
|
||||||
|
|
||||||
Mostly based on [keepachangelog](https://keepachangelog.com/en/1.1.0/) except date format. a-c-f-r-o
|
Mostly based on [keepachangelog](https://keepachangelog.com/en/1.1.0/) except date format. a-c-f-r-o
|
||||||
|
|
||||||
|
## [5.2.3] - 29.11.2024
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- `.iam` Fixed
|
||||||
|
- `.sclr` will now properly change color on many commands it didn't work previously
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- `.rps` now also has bet amount in the result, like other gambling commands
|
||||||
|
|
||||||
## [5.2.2] - 29.11.2024
|
## [5.2.2] - 29.11.2024
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>true</ImplicitUsings>
|
<ImplicitUsings>true</ImplicitUsings>
|
||||||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
||||||
<Version>5.2.2</Version>
|
<Version>5.2.3</Version>
|
||||||
|
|
||||||
<!-- Output/build -->
|
<!-- Output/build -->
|
||||||
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
|
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
|
||||||
|
|
|
@ -21,7 +21,7 @@ public partial class Administration
|
||||||
{
|
{
|
||||||
var guildUser = (IGuildUser)ctx.User;
|
var guildUser = (IGuildUser)ctx.User;
|
||||||
|
|
||||||
var group = await _service.GetRoleGroup(ctx.User.Id, role.Id);
|
var group = await _service.GetRoleGroup(ctx.Guild.Id, role.Id);
|
||||||
|
|
||||||
IUserMessage msg = null;
|
IUserMessage msg = null;
|
||||||
try
|
try
|
||||||
|
@ -90,7 +90,7 @@ public partial class Administration
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var group = await _service.GetRoleGroup(role.Guild.Id, role.Id);
|
var group = await _service.GetRoleGroup(ctx.Guild.Id, role.Id);
|
||||||
|
|
||||||
if (group is null || group.Roles.All(x => x.RoleId != role.Id))
|
if (group is null || group.Roles.All(x => x.RoleId != role.Id))
|
||||||
{
|
{
|
||||||
|
|
|
@ -872,9 +872,6 @@ public partial class Gambling : GamblingModule<GamblingService>
|
||||||
}
|
}
|
||||||
else if (result.Result == RpsResultType.Win)
|
else if (result.Result == RpsResultType.Win)
|
||||||
{
|
{
|
||||||
if ((long)result.Won > 0)
|
|
||||||
embed.AddField(GetText(strs.won), N((long)result.Won));
|
|
||||||
|
|
||||||
msg = GetText(strs.rps_win(ctx.User.Mention,
|
msg = GetText(strs.rps_win(ctx.User.Mention,
|
||||||
GetRpsPick(pick),
|
GetRpsPick(pick),
|
||||||
GetRpsPick((InputRpsPick)result.ComputerPick)));
|
GetRpsPick((InputRpsPick)result.ComputerPick)));
|
||||||
|
@ -890,6 +887,13 @@ public partial class Gambling : GamblingModule<GamblingService>
|
||||||
.WithOkColor()
|
.WithOkColor()
|
||||||
.WithDescription(msg);
|
.WithDescription(msg);
|
||||||
|
|
||||||
|
if (amount > 0)
|
||||||
|
{
|
||||||
|
embed
|
||||||
|
.AddField(GetText(strs.bet), N(amount), true)
|
||||||
|
.AddField(GetText(strs.won), $"{N((long)result.Won)}", true);
|
||||||
|
}
|
||||||
|
|
||||||
await Response().Embed(embed).SendAsync();
|
await Response().Embed(embed).SendAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ public partial class Utility
|
||||||
}
|
}
|
||||||
|
|
||||||
private string GetCommandString(EllieCommandCallModel res)
|
private string GetCommandString(EllieCommandCallModel res)
|
||||||
=> $"{_bcs.Data.Prefix}{res.Name} {res.Arguments.Select((x, i) => GetParamString(x, i + 1 == res.Arguments.Count)).Join(" ")}";
|
=> $"{prefix}{res.Name} {res.Arguments.Select((x, i) => GetParamString(x, i + 1 == res.Arguments.Count)).Join(" ")}";
|
||||||
|
|
||||||
private static string GetParamString(string val, bool isLast)
|
private static string GetParamString(string val, bool isLast)
|
||||||
=> isLast ? val : "\"" + val + "\"";
|
=> isLast ? val : "\"" + val + "\"";
|
||||||
|
|
|
@ -19,7 +19,6 @@ public abstract class EllieModule : ModuleBase
|
||||||
public IEllieInteractionService _inter { get; set; }
|
public IEllieInteractionService _inter { get; set; }
|
||||||
public IReplacementService repSvc { get; set; }
|
public IReplacementService repSvc { get; set; }
|
||||||
public IMessageSenderService _sender { get; set; }
|
public IMessageSenderService _sender { get; set; }
|
||||||
public BotConfigService _bcs { get; set; }
|
|
||||||
|
|
||||||
protected string prefix
|
protected string prefix
|
||||||
=> _cmdHandler.GetPrefix(ctx.Guild);
|
=> _cmdHandler.GetPrefix(ctx.Guild);
|
||||||
|
@ -31,7 +30,7 @@ public abstract class EllieModule : ModuleBase
|
||||||
=> _sender.CreateEmbed(ctx.Guild?.Id);
|
=> _sender.CreateEmbed(ctx.Guild?.Id);
|
||||||
|
|
||||||
public ResponseBuilder Response()
|
public ResponseBuilder Response()
|
||||||
=> new ResponseBuilder(Strings, _bcs, (DiscordSocketClient)ctx.Client)
|
=> new ResponseBuilder(Strings, _sender, (DiscordSocketClient)ctx.Client)
|
||||||
.Context(ctx);
|
.Context(ctx);
|
||||||
|
|
||||||
protected override void BeforeExecute(CommandInfo command)
|
protected override void BeforeExecute(CommandInfo command)
|
||||||
|
|
|
@ -9,31 +9,31 @@ public sealed class MessageSenderService : IMessageSenderService, IEService
|
||||||
|
|
||||||
public MessageSenderService(
|
public MessageSenderService(
|
||||||
IBotStrings bs,
|
IBotStrings bs,
|
||||||
BotConfigService bcs,
|
|
||||||
DiscordSocketClient client,
|
DiscordSocketClient client,
|
||||||
IGuildColorsService gcs)
|
IGuildColorsService gcs,
|
||||||
|
BotConfigService bcs)
|
||||||
{
|
{
|
||||||
_bs = bs;
|
_bs = bs;
|
||||||
_bcs = bcs;
|
|
||||||
_client = client;
|
_client = client;
|
||||||
_gcs = gcs;
|
_gcs = gcs;
|
||||||
|
_bcs = bcs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public ResponseBuilder Response(IMessageChannel channel)
|
public ResponseBuilder Response(IMessageChannel channel)
|
||||||
=> new ResponseBuilder(_bs, _bcs, _client)
|
=> new ResponseBuilder(_bs, this, _client)
|
||||||
.Channel(channel);
|
.Channel(channel);
|
||||||
|
|
||||||
public ResponseBuilder Response(ICommandContext ctx)
|
public ResponseBuilder Response(ICommandContext ctx)
|
||||||
=> new ResponseBuilder(_bs, _bcs, _client)
|
=> new ResponseBuilder(_bs, this, _client)
|
||||||
.Context(ctx);
|
.Context(ctx);
|
||||||
|
|
||||||
public ResponseBuilder Response(IUser user)
|
public ResponseBuilder Response(IUser user)
|
||||||
=> new ResponseBuilder(_bs, _bcs, _client)
|
=> new ResponseBuilder(_bs, this, _client)
|
||||||
.User(user);
|
.User(user);
|
||||||
|
|
||||||
public ResponseBuilder Response(SocketMessageComponent smc)
|
public ResponseBuilder Response(SocketMessageComponent smc)
|
||||||
=> new ResponseBuilder(_bs, _bcs, _client)
|
=> new ResponseBuilder(_bs, this, _client)
|
||||||
.Channel(smc.Channel);
|
.Channel(smc.Channel);
|
||||||
|
|
||||||
public EllieEmbedBuilder CreateEmbed(ulong? guildId = null)
|
public EllieEmbedBuilder CreateEmbed(ulong? guildId = null)
|
||||||
|
|
|
@ -6,16 +6,17 @@ public sealed partial class ResponseBuilder
|
||||||
{
|
{
|
||||||
private ICommandContext? ctx;
|
private ICommandContext? ctx;
|
||||||
private IMessageChannel? channel;
|
private IMessageChannel? channel;
|
||||||
private string? plainText;
|
|
||||||
private IReadOnlyCollection<EmbedBuilder>? embeds;
|
|
||||||
private IUserMessage? msg;
|
private IUserMessage? msg;
|
||||||
private IUser? user;
|
private IUser? user;
|
||||||
|
|
||||||
|
private string? plainText;
|
||||||
|
private IReadOnlyCollection<EmbedBuilder>? embeds;
|
||||||
private bool sanitizeMentions = true;
|
private bool sanitizeMentions = true;
|
||||||
private LocStr? locTxt;
|
private LocStr? locTxt;
|
||||||
private object[] locParams = [];
|
private object[] locParams = [];
|
||||||
private bool shouldReply = true;
|
private bool shouldReply = true;
|
||||||
private readonly IBotStrings _bs;
|
private readonly IBotStrings _bs;
|
||||||
private readonly BotConfigService _bcs;
|
private readonly IMessageSenderService _sender;
|
||||||
private EmbedBuilder? embedBuilder;
|
private EmbedBuilder? embedBuilder;
|
||||||
private EllieInteractionBase? inter;
|
private EllieInteractionBase? inter;
|
||||||
private Stream? fileStream;
|
private Stream? fileStream;
|
||||||
|
@ -25,10 +26,10 @@ public sealed partial class ResponseBuilder
|
||||||
|
|
||||||
public DiscordSocketClient Client { get; set; }
|
public DiscordSocketClient Client { get; set; }
|
||||||
|
|
||||||
public ResponseBuilder(IBotStrings bs, BotConfigService bcs, DiscordSocketClient client)
|
public ResponseBuilder(IBotStrings bs, IMessageSenderService sender, DiscordSocketClient client)
|
||||||
{
|
{
|
||||||
_bs = bs;
|
_bs = bs;
|
||||||
_bcs = bcs;
|
_sender = sender;
|
||||||
Client = client;
|
Client = client;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -197,7 +198,7 @@ public sealed partial class ResponseBuilder
|
||||||
string? url = null,
|
string? url = null,
|
||||||
string? footer = null)
|
string? footer = null)
|
||||||
{
|
{
|
||||||
var eb = new EllieEmbedBuilder(_bcs)
|
var eb = _sender.CreateEmbed(ctx?.Guild?.Id ?? (channel as ITextChannel)?.GuildId ?? (user as IGuildUser)?.GuildId)
|
||||||
.WithDescription(text);
|
.WithDescription(text);
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(title))
|
if (!string.IsNullOrWhiteSpace(title))
|
||||||
|
|
|
@ -9,7 +9,7 @@ public static class SocketMessageComponentExtensions
|
||||||
MsgType type,
|
MsgType type,
|
||||||
bool ephemeral = false)
|
bool ephemeral = false)
|
||||||
{
|
{
|
||||||
var embed = sender.CreateEmbed().WithDescription(text);
|
var embed = sender.CreateEmbed(ch.GuildId).WithDescription(text);
|
||||||
|
|
||||||
embed = (type switch
|
embed = (type switch
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue