From 56fd6a9d86ac57580ec2b91cc98db31dda5f5770 Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Fri, 15 Apr 2016 08:49:26 -0400 Subject: Fixed segfaults --- src/quest.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/quest.cpp') diff --git a/src/quest.cpp b/src/quest.cpp index afeec6b..aa0bb2e 100644 --- a/src/quest.cpp +++ b/src/quest.cpp @@ -5,7 +5,7 @@ extern Player *player; -int QuestHandler::assign(std::string title,std::string desc,std::string req){ +int QuestHandler::assign(std::string title,std::string desc,std::string req) { Quest tmp; char *tok; @@ -31,16 +31,16 @@ int QuestHandler::assign(std::string title,std::string desc,std::string req){ return 0; } -int QuestHandler::drop(std::string title){ - current.erase(std::remove_if(current.begin(), +int QuestHandler::drop(std::string title) { + current.erase(std::remove_if (current.begin(), current.end(), - [&](Quest q){ return q.title == title; }), + [&](Quest q) { return q.title == title; }), current.end()); return 0; } -int QuestHandler::finish(std::string t){ +int QuestHandler::finish(std::string t) { for (auto c = current.begin(); c != current.end(); c++) { if ((*c).title == t) { for (auto &n : (*c).need) { @@ -58,7 +58,7 @@ int QuestHandler::finish(std::string t){ return 0; } -bool QuestHandler::hasQuest(std::string t){ +bool QuestHandler::hasQuest(std::string t) { for (auto &c : current) { if (c.title == t) return true; -- cgit v1.2.3