1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 07:33:14 +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
@@ -29,7 +29,7 @@ public:
{
}
void Tick() override
bool Tick() override
{
try
{
@@ -39,6 +39,7 @@ public:
{
Log(LOG_TERMINAL) << "Unable to connect to uplink #" << (Anope::CurrentUplink + 1) << " (" << Config->Uplinks[Anope::CurrentUplink].str() << "): " << ex.GetReason();
}
return false;
}
};