Skip to content

Commit

Permalink
Update server-specific features
Browse files Browse the repository at this point in the history
  • Loading branch information
FloatingMilkshake committed Oct 13, 2024
1 parent 8ac12f7 commit ecd7a78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ServerSpecificFeatures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ public class MessageCommands : BaseCommandModule

[Command("poop")]
[Description("immaturity is key")]
[Aliases("shit")]
[Aliases("shit", "defecate")]
[TargetServer(799644062973427743)]
public async Task Poop(CommandContext ctx)
public async Task Poop(CommandContext ctx, [RemainingText] string much = "")
{
if (ctx.Channel.IsPrivate)
{
Expand All @@ -283,7 +283,7 @@ public async Task Poop(CommandContext ctx)
msg = await chan.GetMessageAsync(1282187612844589168);
#else
chan = await Program.Discord.GetChannelAsync(892978015309557870);
msg = await chan.GetMessageAsync(1085253151155830895);
msg = much == "MUCH" ? await chan.GetMessageAsync(1294869494648279071) : await chan.GetMessageAsync(1085253151155830895);
#endif

var phrases = msg.Content.Split("\n");
Expand Down

0 comments on commit ecd7a78

Please sign in to comment.