summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/mmo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h
index ae028f283..a1147d783 100644
--- a/src/common/mmo.h
+++ b/src/common/mmo.h
@@ -127,11 +127,11 @@ enum item_types {
//Questlog system [Kevin]
-typedef enum quest_state { Q_NONE, Q_ACTIVE, Q_INACTIVE } quest_state;
+typedef enum quest_state { Q_INACTIVE, Q_ACTIVE } quest_state;
struct quest_objective {
- char * name;
+ char name[NAME_LENGTH];
int count;
};