diff options
Diffstat (limited to '')
-rw-r--r-- | Hsbot/Plugin/Duck.hs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Hsbot/Plugin/Duck.hs b/Hsbot/Plugin/Duck.hs index 0cdb85c..7001465 100644 --- a/Hsbot/Plugin/Duck.hs +++ b/Hsbot/Plugin/Duck.hs @@ -147,13 +147,11 @@ someRandomDuck = do -- | There are many ways to hide as a duck, this function tries to cover most of them ducks :: [String] -ducks = [ x : y : z | x <- nose, y <- face, z <- ["__/", "_/", "/"] ] - ++ [ L.reverse $ x : y : z | x <- nose, y <- face, z <- ["__\\", "_\\", "\\"] ] +ducks = [ x : y : z | x <- ">=", y <- face, z <- ["__/", "_/"] ] + ++ [ L.reverse $ x : y : z | x <- "<=", y <- face, z <- ["__\\", "_\\"] ] where - nose :: String - nose = "<>=" face :: String - face = "oO°@©®ð*òôóø" + face = "oO°@©®ð*òôóø⊕Ω" -- | Weapons can have different noises bangs :: [String] |