-- a/src/Patchage.cpp
++ b/src/Patchage.cpp
for (int c = 0; cmd[c].uuid; ++c) {
std::string command = cmd[c].command;
const size_t index = command.find(var);
if (index != string::npos) {
if (index != std::string::npos) {
command.replace(index, var.length(), cmd[c].client_name);
}