1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 05:06:37 +02:00

Made anoperc stop/restart send the cycleonglobal, and fixed logfiles to be opened with append not truncate

This commit is contained in:
Adam
2010-10-04 21:46:15 -04:00
parent 592060ac75
commit 10833f9d3f
4 changed files with 11 additions and 7 deletions
+5 -4
View File
@@ -175,7 +175,8 @@ void Channel::JoinUser(User *user)
}
}
if (update_ts)
/* Update the TS, unless I'm joining a bot already */
if (update_ts && user->server != Me)
{
/* Send the updated TS */
if (!this->ci->bi || !this->FindUser(this->ci->bi))
@@ -831,9 +832,9 @@ void Channel::SetModes(BotInfo *bi, bool EnforceMLock, const char *cmodes, ...)
* @param mode the modes
* @param EnforceMLock true to enforce mlock
*/
void Channel::SetModesInternal(User *setter, const Anope::string &modes, bool EnforceMLock)
void Channel::SetModesInternal(User *setter, const Anope::string &mode, bool EnforceMLock)
{
spacesepstream sep_modes(modes);
spacesepstream sep_modes(mode);
Anope::string m;
sep_modes.GetToken(m);
@@ -897,7 +898,7 @@ void Channel::SetModesInternal(User *setter, const Anope::string &modes, bool En
this->RemoveModeInternal(cm, token, EnforceMLock);
}
else
Log() << "warning: Channel::SetModesInternal() recieved more modes requiring params than params, modes: " << modes;
Log() << "warning: Channel::SetModesInternal() recieved more modes requiring params than params, modes: " << mode;
}
if (setter)