queue system, better command systsem, whispers/messages now can get split if too long

This commit is contained in:
2023-10-05 02:10:43 -05:00
parent 74d14372ec
commit fb666f1d92
6 changed files with 321 additions and 230 deletions

View File

@@ -24,7 +24,6 @@ public:
if (line.rfind("#", 0) != 0) {
std::string name = line.substr(0, line.find("="));
std::string value = line.substr(line.find("=")+1, line.length());
std::cout << name << ": \"" << value << "\"" << std::endl;
conf[name] = value;
}
}
@@ -90,7 +89,6 @@ public:
line = line.substr(1, line.length());
} // For \[text] messages.
messages[group].push_back(line);
std::cout << "[" << group << "]=" << line << std::endl;
}
}
}