3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

RPL_ENDOFNAMES should come from server

This commit is contained in:
Jeremy Latt 2014-02-14 19:38:01 -08:00
parent 33b1e6c582
commit 6983d1930c

View File

@ -218,7 +218,7 @@ func RplNamReply(channel *Channel, names []string) *NumericReply {
}
func RplEndOfNames(channel *Channel) Reply {
return NewNumericReply(channel, RPL_ENDOFNAMES,
return NewNumericReply(channel.server, RPL_ENDOFNAMES,
"%s :End of NAMES list", channel.name)
}