diff options
author | alex | 2019-09-22 10:48:24 +0100 |
---|---|---|
committer | alex | 2019-09-22 10:48:24 +0100 |
commit | 03d90245091936d7db14a08ea57bdc4d3b41484a (patch) | |
tree | aac1b85708c2a9e5671dde70d4d5b6049f4462c2 /wat | |
parent | 304fcff75c561115d2816f8bb9c1074b70a204ee (diff) | |
download | watbot-03d90245091936d7db14a08ea57bdc4d3b41484a.tar.gz watbot-03d90245091936d7db14a08ea57bdc4d3b41484a.tar.bz2 watbot-03d90245091936d7db14a08ea57bdc4d3b41484a.zip |
fixes #9
Diffstat (limited to 'wat')
-rw-r--r-- | wat/game.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wat/game.go b/wat/game.go index 6f19dc3..e401a72 100644 --- a/wat/game.go +++ b/wat/game.go @@ -88,7 +88,7 @@ func (g *WatGame) Msg(m *irc.Message, player *Player, fields []string) { case "richest": reply = fmt.Sprintf("%s holders: %s", currency, g.TopTen()) case "bankruptest": - reply = fmt.Sprintf("most indebited: %s", g.Bankrupest()) + reply = fmt.Sprintf("times bankrupt: %s", g.Bankrupest()) case "source": reply = "https://git.circuitco.de/self/watbot" } |