diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2026-01-17 00:50:58 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2026-01-17 00:50:58 -0300 |
| commit | 6052f2452409c2d1560984b2d2c5cfc3517742f4 (patch) | |
| tree | b992d36b7c71833c846445f496c25955a006f09e /src/query.cc | |
| parent | 8c2a8461db64e92ac09f202589009ee05c69626d (diff) | |
| download | querymanager-6052f2452409c2d1560984b2d2c5cfc3517742f4.tar.gz querymanager-6052f2452409c2d1560984b2d2c5cfc3517742f4.zip | |
fix problem with EvictExGuildleaders query
Diffstat (limited to 'src/query.cc')
| -rw-r--r-- | src/query.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/query.cc b/src/query.cc index a42e9eb..bd3a380 100644 --- a/src/query.cc +++ b/src/query.cc @@ -1221,7 +1221,7 @@ void ProcessEvictExGuildleaders(TDatabase *Database, TQuery *Query){ bool IsGuildLeader; QUERY_STOP_IF(!GetGuildLeaderStatus(Database, Query->WorldID, OwnerID, &IsGuildLeader)); - if(IsGuildLeader){ + if(!IsGuildLeader){ Evictions.Push(HouseID); } } |
