From 3f40fe4603246d28b4aedd8abfbd0798f987787e Mon Sep 17 00:00:00 2001 From: Fraser Graham Date: Mon, 11 Nov 2013 20:31:33 -0800 Subject: [PATCH] put point limit back to normal --- protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol.go b/protocol.go index a6874e4..c19ae7e 100644 --- a/protocol.go +++ b/protocol.go @@ -59,7 +59,7 @@ func (config ClientConfig) Valid() bool { } // allowing for 50 pts in every category - if total > 1000 { + if total > 500 { return false } return true