diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-15 08:49:26 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-15 08:49:26 -0400 |
commit | 56fd6a9d86ac57580ec2b91cc98db31dda5f5770 (patch) | |
tree | 359c86e617b993a07465dfc020a26704753a5320 /src/quest.cpp | |
parent | 8b0f74445b509d8e59ec89854f2e149ad1948d4e (diff) |
Fixed segfaults
Diffstat (limited to 'src/quest.cpp')
-rw-r--r-- | src/quest.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
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;
|