diff options
| author | p0wer <none@none> | 2009-12-21 21:21:39 -0600 |
|---|---|---|
| committer | p0wer <none@none> | 2009-12-21 21:21:39 -0600 |
| commit | b4e1ee63550dc999ab0668793412497fc799f03f (patch) | |
| tree | 20021a99d03dc941ae59578c579f4abdeb84fb92 /src | |
| parent | 9d9fa2bcf33f1ed93462401abf66994a7d80a6bb (diff) | |
Fix some whitespace errors. Corrected account_access 'id' type.
--HG--
branch : trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/WorldSocket.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/game/WorldSocket.cpp b/src/game/WorldSocket.cpp index 34efa1066fb..0097da8f359 100644 --- a/src/game/WorldSocket.cpp +++ b/src/game/WorldSocket.cpp @@ -820,16 +820,16 @@ int WorldSocket::HandleAuthSession (WorldPacket& recvPacket) delete result; - // Checks gmlevel per Realm - result = - loginDatabase.PQuery ("SELECT " - "RealmID, " //0 - "gmlevel " //1 - "FROM account_access " - "WHERE id = '%d'" - " AND (RealmID = '%d'" - " OR RealmID = '-1')", - id, realmID); + // Checks gmlevel per Realm + result = + loginDatabase.PQuery ("SELECT " + "RealmID, " //0 + "gmlevel " //1 + "FROM account_access " + "WHERE id = '%d'" + " AND (RealmID = '%d'" + " OR RealmID = '-1')", + id, realmID); if(!result) security = 0; else |
