Avoid file_cache in opermotd and showfile.

This commit is contained in:
Sadie Powell 2022-10-12 10:58:40 +01:00
parent 8f0d732e38
commit c747d89f0e
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ class CommandOpermotd final
: public Command
{
public:
file_cache opermotd;
std::vector<std::string> opermotd;
CommandOpermotd(Module* Creator) : Command(Creator,"OPERMOTD", 0, 1)
{

View File

@ -45,7 +45,7 @@ class CommandShowFile final
unsigned int intronumeric;
unsigned int textnumeric;
unsigned int endnumeric;
file_cache contents;
std::vector<std::string> contents;
Method method;
public: