1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 09:43:13 +02:00

Change Timer::Tick to return bool, get rid of the repeating field.

This commit is contained in:
Sadie Powell
2026-05-02 14:34:17 +01:00
parent c0bafe10b4
commit f12b590a6d
15 changed files with 52 additions and 53 deletions
+2 -1
View File
@@ -92,11 +92,12 @@ public:
{
}
void Tick() override
bool Tick() override
{
Channel *c = Channel::Find(chname);
if (c)
c->RemoveMode(NULL, "BAN", mask);
return false;
}
};