- Fixed loading WorldPosition from string to fix RTSC points loading (#965)

- Restored loading from playerbots_db_store
- Added deletion before saving to playerbots_db_store
This commit is contained in:
kadeshar
2025-02-13 11:39:20 +01:00
committed by GitHub
parent ab7acfbdfc
commit bf195efaea
4 changed files with 44 additions and 19 deletions

View File

@@ -131,6 +131,7 @@ public:
std::string const print();
std::string const to_string();
std::vector<std::string> split(const std::string& s, char delimiter);
void printWKT(std::vector<WorldPosition> points, std::ostringstream& out, uint32 dim = 0, bool loop = false);
void printWKT(std::ostringstream& out) { printWKT({*this}, out); }