diff options
author | Riley <49880817+DerZombiiie@users.noreply.github.com> | 2022-04-21 12:11:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 12:11:57 +0200 |
commit | ee8e27b416e49c94b88be126b323a33e826f20c9 (patch) | |
tree | f803d4f2ab019622da75aa17482221a167540c90 /process.go | |
parent | 14e56ef5276690433b82f0b323cab62a9e0ec8b6 (diff) |
Update process.go
Diffstat (limited to 'process.go')
-rw-r--r-- | process.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -543,8 +543,10 @@ func (sc *ServerConn) process(pkt mt.Pkt) { clt.SendChatMsg(cmd.String()) for _, srvName := range FallbackServers(sc.name) { err := clt.Hop(srvName) - if err != nil { + if err == nil { continue + } else { + clt.Log("<-", err) } } return |