fix build by using std::string cast
This commit is contained in:
parent
619d1993a7
commit
0a44b99675
@ -100,7 +100,7 @@ namespace bots
|
||||
const auto names = bots.GetArray();
|
||||
for (const auto& name : names)
|
||||
{
|
||||
bot_names.emplace_back(name.Get<std::string>());
|
||||
bot_names.emplace_back(std::string(name.GetString()));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user