diff --git a/Changes b/Changes index 9533dd40a..29b8f53c2 100644 --- a/Changes +++ b/Changes @@ -2603,3 +2603,5 @@ seen. gmtime warning still there requested by AngryWolf (#0001365) - Added HOOKTYPE_PRE_LOCAL_PART to allow changing of part messages suggested by AngryWolf (#0001365) +- Fixed a bug with SVSNLINE - reported by FreakyComputer and fixed by AngryWolf + (#0001399) diff --git a/src/modules/m_svsnline.c b/src/modules/m_svsnline.c index ada5595b6..8a367b5a4 100644 --- a/src/modules/m_svsnline.c +++ b/src/modules/m_svsnline.c @@ -172,7 +172,7 @@ DLLFUNC int m_svsnline(aClient *cptr, aClient *sptr, int parc, char *parv[]) continue; if (bconf->flag.type2 != CONF_BAN_TYPE_AKILL) continue; - if (!stricmp(bconf->mask, parv[3])) + if (!stricmp(bconf->mask, parv[2])) break; } if (bconf)