check pending names too (#1748)

This commit is contained in:
David Markowitz
2025-03-28 15:03:04 -07:00
committed by GitHub
parent d104559cc4
commit 347fc46f01
7 changed files with 26 additions and 7 deletions

View File

@@ -102,6 +102,8 @@ class TestSQLDatabase : public GameDatabase {
void InsertUgcBuild(const std::string& modules, const LWOOBJID bigId, const std::optional<uint32_t> characterId) override {};
void DeleteUgcBuild(const LWOOBJID bigId) override {};
uint32_t GetAccountCount() override { return 0; };
bool IsNameInUse(const std::string_view name) override { return false; };
};
#endif //!TESTSQLDATABASE_H