-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: shedaniel <daniel@shedaniel.me>
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
src/main/kotlin/me/shedaniel/linkie/discord/commands/MigrateMMCommandToRequiredCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright (c) 2019, 2020, 2021 shedaniel | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package me.shedaniel.linkie.discord.commands | ||
|
||
import discord4j.rest.util.Color | ||
import me.shedaniel.linkie.discord.OptionlessCommand | ||
import me.shedaniel.linkie.discord.utils.CommandContext | ||
import me.shedaniel.linkie.discord.utils.basicEmbed | ||
import me.shedaniel.linkie.discord.utils.dismissButton | ||
|
||
class MigrateMMCommandToRequiredCommand : OptionlessCommand { | ||
override suspend fun execute(ctx: CommandContext) { | ||
ctx.message.reply(ctx, { | ||
dismissButton() | ||
}) { | ||
title("Command Scheduled to be Removed") | ||
description("""Commands **!mm** / **!mmc** / **!mmf** / **!mmm** is scheduled to be removed, | ||
|please switch to the following more explicit commands: | ||
| | ||
|**!mmi** / **!mmic** / **!mmif** / **!mmim** for Mojang Mappings via Intermediary **(Fabric)** | ||
|**!mms** / **!mmsc** / **!mmsf** / **!mmsm** for Mojang Mappings via SRG **(Forge)** | ||
|**!qh** / **!qhc** / **!qhf** / **!qhm** for Mojang Mappings via Hash **(Quilt)**""".trimMargin()) | ||
color(Color.RED) | ||
basicEmbed(ctx.user) | ||
} | ||
} | ||
} |