diff options
Diffstat (limited to 'modules/commands/greet.cpp')
-rw-r--r-- | modules/commands/greet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/greet.cpp b/modules/commands/greet.cpp index 7e1b5ce75..963a28ffd 100644 --- a/modules/commands/greet.cpp +++ b/modules/commands/greet.cpp @@ -188,7 +188,7 @@ class Greet : public Module * to has synced, or we'll get greet-floods when the net * recovers from a netsplit. -GD */ - if (!c->ci || !c->ci->bi || !user->server->IsSynced() || !user->Account()) + if (!c->ci || !c->ci->bi || !user->server->IsSynced() || !user->IsIdentified()) return; Anope::string *greet = ns_greet.Get(user->Account()); |