1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Revert uninteded change

This commit is contained in:
Ivan Savenko 2022-12-26 14:48:13 +02:00
parent 370e92a90a
commit 78ed2f154b

View File

@ -161,10 +161,10 @@ public:
std::string toString() const
{
//Performance is important here
std::string result = "{" +
std::string result = "(" +
std::to_string(x) + " " +
std::to_string(y) + " " +
std::to_string(z) + "}";
std::to_string(z) + ")";
return result;
}