diff options
author | Treeston <treeston.mmoc@gmail.com> | 2019-07-12 13:37:27 +0200 |
---|---|---|
committer | Treeston <treeston.mmoc@gmail.com> | 2019-07-12 13:37:27 +0200 |
commit | daf423a6c3c0fdd13e421f02ccd791103f7bdd5b (patch) | |
tree | 8f4534109334572f72fcc946fd7ea66d7fd45793 /src/server/scripts/Commands | |
parent | 7d6896b54141c32c51f49f2c3fcd58cd986f0e02 (diff) |
Scripts/Commands: .account ban no longer fails if an account containing the specified account name is already banned (f.ex. attempting to ban 'test' if 'test2' is already banned) - closes #22990
Diffstat (limited to 'src/server/scripts/Commands')
-rw-r--r-- | src/server/scripts/Commands/cs_ban.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_ban.cpp b/src/server/scripts/Commands/cs_ban.cpp index 128638caa15..f1856f9e316 100644 --- a/src/server/scripts/Commands/cs_ban.cpp +++ b/src/server/scripts/Commands/cs_ban.cpp @@ -406,7 +406,7 @@ public: } else { - stmt = LoginDatabase.GetPreparedStatement(LOGIN_SEL_ACCOUNT_BANNED_BY_USERNAME); + stmt = LoginDatabase.GetPreparedStatement(LOGIN_SEL_ACCOUNT_BANNED_BY_FILTER); stmt->setString(0, filter); result = LoginDatabase.Query(stmt); } |