summaryrefslogtreecommitdiff
path: root/src/commands/copypasta.rs
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-13 17:02:42 -0400
committerseth <[email protected]>2023-04-13 17:08:32 -0400
commit3dc807ed0a78c7f15030e5a739cf66b522e27c04 (patch)
tree987fee22aeb818bfb430f9daf4447ead83cddfec /src/commands/copypasta.rs
parent2ff6754bd1c53a801929152624c8d9acf108aa60 (diff)
add astral copypasta + include/ -> copypastas/
Diffstat (limited to 'src/commands/copypasta.rs')
-rw-r--r--src/commands/copypasta.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/commands/copypasta.rs b/src/commands/copypasta.rs
index 0e1a8e6..d7ec2d0 100644
--- a/src/commands/copypasta.rs
+++ b/src/commands/copypasta.rs
@@ -52,12 +52,13 @@ pub fn register(command: &mut CreateApplicationCommand) -> &mut CreateApplicatio
.description("the copypasta you want to send")
.kind(CommandOptionType::String)
.required(true)
- .add_string_choice("ismah", "ismah") // renable this later
+ .add_string_choice("astral", "astral")
+ .add_string_choice("dvd", "dvd")
+ .add_string_choice("egrill", "egrill")
.add_string_choice("happymeal", "happymeal")
+ .add_string_choice("ismah", "ismah")
.add_string_choice("sus", "sus")
.add_string_choice("ticktock", "ticktock")
- .add_string_choice("egrill", "egrill")
- .add_string_choice("dvd", "dvd")
.add_string_choice("twitter", "twitter")
})
}