diff options
author | alex | 2018-12-03 23:21:11 +0000 |
---|---|---|
committer | alex | 2018-12-03 23:21:11 +0000 |
commit | ca91956e27ab31b5cef5af4927fe37b0671ce092 (patch) | |
tree | f8ff3f5af4748dd940d08c2404ea4dca6b80e751 /wat/bot.go | |
parent | 88d612e041691268d97ab1ae01a2c1d8c7db5fe7 (diff) | |
download | watbot-ca91956e27ab31b5cef5af4927fe37b0671ce092.tar.gz watbot-ca91956e27ab31b5cef5af4927fe37b0671ce092.tar.bz2 watbot-ca91956e27ab31b5cef5af4927fe37b0671ce092.zip |
int64 -> uint64 for coins, disable noisy logging, turned off wattery (it was quickly abused), made anarchy less likely to win and time limited
Diffstat (limited to 'wat/bot.go')
-rw-r--r-- | wat/bot.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -121,7 +121,7 @@ func (w *WatBot) say(dest, msg string) { if len(msg) == 0 { return } - fmt.Printf("MSG %s: %s\n", dest, msg) + //fmt.Printf("MSG %s: %s\n", dest, msg) w.write("PRIVMSG", dest, msg) } |