diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Quest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Quest.h b/include/Quest.h index 7ba77c8..388b14d 100644 --- a/include/Quest.h +++ b/include/Quest.h @@ -55,13 +55,13 @@ public: * that gave the quest originally.
*/
- int finish(const char *t,void *completer);
+ int finish(std::string t);
/**
* Returns true if this handler is currently taking the quest.
*/
- bool hasQuest(const char *t);
+ bool hasQuest(std::string t);
};
#endif // QUEST_H
|