mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-05 17:13:12 +02:00
Fixed a couple of webtv whois grammar errors.
This commit is contained in:
@@ -1545,3 +1545,4 @@
|
||||
- Added class::options::notargetlag to prevent to lag to users from this class, suggested by djGrrr (#0003145).
|
||||
- Added include::bind-ip to bind an ip to download in case of having defined LIBCURL, suggested by djGrrr (#00003185).
|
||||
- oper::from::userhost now accepts a CIDR address (eg *me@1.2.3.0/24), requested by djGrrr (#0003234).
|
||||
- Corrected a couple of grammar errors in WebTV whois (/msg IRC WHOIS nick) output, reported by CuLpA (#0003244).
|
||||
|
||||
+2
-2
@@ -367,7 +367,7 @@ int w_whois(aClient *cptr, aClient *sptr, int parc, char *parv[])
|
||||
strcat(buf, "a Local IRC Operator");
|
||||
if (buf[0])
|
||||
sendto_one(sptr,
|
||||
":IRC PRIVMSG %s :%s is an %s on %s",
|
||||
":IRC PRIVMSG %s :%s is %s on %s",
|
||||
sptr->name, name, buf, ircnetwork);
|
||||
}
|
||||
|
||||
@@ -378,7 +378,7 @@ int w_whois(aClient *cptr, aClient *sptr, int parc, char *parv[])
|
||||
|
||||
if (acptr->umodes & UMODE_BOT)
|
||||
{
|
||||
sendto_one(sptr, ":IRC PRIVMSG %s :%s is an Bot on %s",
|
||||
sendto_one(sptr, ":IRC PRIVMSG %s :%s is a Bot on %s",
|
||||
sptr->name, name, ircnetwork);
|
||||
}
|
||||
if (acptr->umodes & UMODE_SECURE)
|
||||
|
||||
Reference in New Issue
Block a user