diff options
| author | Max Audron <audron@cocaine.farm> | 2025-05-06 16:35:10 +0200 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2025-05-06 16:35:10 +0200 |
| commit | 3c28f637affeed5fdba4a3e3bccdf95d64a99454 (patch) | |
| tree | 171e49211460786e5b3672547fd5304462e027f4 /src/hooks/shifty_eyes.rs | |
| parent | fix truncate on unicode (diff) | |
remove too commonly used used for shifty_eyes
Diffstat (limited to '')
| -rw-r--r-- | src/hooks/shifty_eyes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hooks/shifty_eyes.rs b/src/hooks/shifty_eyes.rs index 6203075..dfe75a7 100644 --- a/src/hooks/shifty_eyes.rs +++ b/src/hooks/shifty_eyes.rs @@ -1,7 +1,7 @@ use anyhow::{bail, Context, Result}; use irc::client::prelude::*; -const EYES: [char; 11] = ['^', 'v', 'V', '>', '<', 'x', 'X', '-', 'o', 'O', '.']; +const EYES: [char; 7] = ['^', 'v', 'V', '>', '<', 'x', 'X']; const NOSE: [char; 7] = ['.', '_', '-', ';', '\'', '"', '~']; /// you are being watched <.< |
