diff options
| author | seth <[email protected]> | 2023-11-16 22:56:47 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-18 01:42:03 +0000 |
| commit | ea085cd27e2058d5aed9afe51545d0c76b3f5df9 (patch) | |
| tree | fa8eadc3799154c0014cf22bc64daf5262721509 /src/commands | |
| parent | d29e3a532871ca4588c4574352014659bb721140 (diff) | |
chore: cleanup unused copypastas
Diffstat (limited to 'src/commands')
| -rw-r--r-- | src/commands/copypasta.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commands/copypasta.rs b/src/commands/copypasta.rs index dcff558..90d3b0a 100644 --- a/src/commands/copypasta.rs +++ b/src/commands/copypasta.rs @@ -13,7 +13,6 @@ pub enum Copypastas { DVD, Egrill, HappyMeal, - //Ismah, Sus, TickTock, Twitter, @@ -26,7 +25,6 @@ impl Copypastas { Copypastas::DVD => "dvd", Copypastas::Egrill => "egrill", Copypastas::HappyMeal => "happymeal", - //Copypastas::Ismah => "ismah", Copypastas::Sus => "sus", Copypastas::TickTock => "ticktock", Copypastas::Twitter => "twitter", @@ -49,6 +47,7 @@ fn get_copypasta(name: Copypastas) -> String { if files.contains_key(name.as_str()) { files[name.as_str()].to_string() } else { + warn!("copypasta {} not found!", name); format!("i don't have a copypasta named {name} :(") } } |
