Skip to content
This repository has been archived by the owner on Jul 27, 2020. It is now read-only.

Commit

Permalink
Core/Auth: Fix error with realmFlags
Browse files Browse the repository at this point in the history
Signed-off-by: Bootz <bootz@projectskyfire.org>
  • Loading branch information
Bootz committed Apr 22, 2018
1 parent ccea490 commit bf05858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/authserver/Realms/RealmList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void RealmList::UpdateRealms(bool init)
{
sLog->outDetail("Updating Realm List...");

QueryResult_AutoPtr result = LoginDatabase.Query("SELECT id, name, address, port, icon, flag, timezone, allowedSecurityLevel, population, gamebuild FROM realmlist WHERE flag 3 ORDER BY name");
QueryResult_AutoPtr result = LoginDatabase.Query("SELECT id, name, address, port, icon, flag, timezone, allowedSecurityLevel, population, gamebuild FROM realmlist WHERE flag <> 3 ORDER BY name");

// Circle through results and add them to the realm map
if (result)
Expand Down

1 comment on commit bf05858

@Bootz
Copy link
Contributor Author

@Bootz Bootz commented on bf05858 Apr 22, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be able to use SFO authserver now... if not can still use a sf version from 406a->548.

Please sign in to comment.