aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2026-01-17 00:50:58 -0300
committerfusion32 <marcopuzziello@gmail.com>2026-01-17 00:50:58 -0300
commit6052f2452409c2d1560984b2d2c5cfc3517742f4 (patch)
treeb992d36b7c71833c846445f496c25955a006f09e
parent8c2a8461db64e92ac09f202589009ee05c69626d (diff)
downloadquerymanager-6052f2452409c2d1560984b2d2c5cfc3517742f4.tar.gz
querymanager-6052f2452409c2d1560984b2d2c5cfc3517742f4.zip
fix problem with EvictExGuildleaders query
-rw-r--r--src/query.cc2
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);
}
}