We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81708ad commit 97f9919Copy full SHA for 97f9919
src/addons/addons.cpp
@@ -65,5 +65,5 @@ void Addons::RegisterAddons()
65
this->addons.push_back(addonsFile["addons"][i].GetString());
66
}
67
68
- AddonsError(string_format("Loaded %d addons.", this->addons.size()).c_str());
+ AddonsError(string_format("Loaded %d addon%s.", this->addons.size(), this->addons.size() == 1 ? "" : "s").c_str());
69
0 commit comments