summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157>2009-11-29 17:40:38 +0000
committerpb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157>2009-11-29 17:40:38 +0000
commit0bfae00d0791512fef41055a21afb2c86c22be9b (patch)
tree2daac4fb5ef8f28e27c422da8da33fd4da38161f
parent307e2f7ce58af0bd70fe4741da8c5dc4c1f82008 (diff)
git-svn-id: https://ssl.buetow.org/repos/hsbot/trunk@8 9f8f72e9-4bf4-416e-b76e-7d4203597157
-rw-r--r--HsBot.hs5
1 files changed, 1 insertions, 4 deletions
diff --git a/HsBot.hs b/HsBot.hs
index aa3f812..1baa1b8 100644
--- a/HsBot.hs
+++ b/HsBot.hs
@@ -39,10 +39,7 @@ instance Eq User where x == y = (userPts x) == (userPts y)
instance Ord User where
x < y = (userPts x) < (userPts y)
x > y = (userPts x) > (userPts y)
- x >= y = not (maxLoggMessages :: Int
-maxLoggMessages = 10
-
-x < y)
+ x >= y = not (x < y)
x <= y = not (x > y)
class Render a where render :: a -> String