fixed file path

This commit is contained in:
Anselme 2015-08-21 17:14:46 +02:00
parent 950964130b
commit cf4ce05bc9
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
FourasModule::FourasModule() : current(-1)
{
riddles = new Riddles("../res/fouras.txt", "../res/fourasAnswers.txt");
riddles = new Riddles("../../res/fouras.txt", "../../res/fourasAnswers.txt");
std::srand(time(NULL));
}

View File

@ -16,7 +16,7 @@ bool RegisModule::messageHandler(Message msg)
else if(msg.args.compare("!initrégis") == 0)
{
regisEnable = true;
voc.load("../res/vocab.txt");
voc.load("../../res/vocab.txt");
setNick("il_est_con_Regis");
answer = QString("NICK %1\r\n").arg(getNick());
return true;