summaryrefslogtreecommitdiff
path: root/src/common/mmo.h
diff options
context:
space:
mode:
authorKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-11 07:12:45 +0000
committerKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-11 07:12:45 +0000
commit3e2be49541f4f9e464fb7cac1c4bd6eff4df5572 (patch)
treefbda0c2978ef30de8362c56d2a352a06791d2bce /src/common/mmo.h
parentc6670cae6548eb6792b13f00ea6d8299c2c825fc (diff)
downloadhercules-3e2be49541f4f9e464fb7cac1c4bd6eff4df5572.tar.gz
hercules-3e2be49541f4f9e464fb7cac1c4bd6eff4df5572.tar.bz2
hercules-3e2be49541f4f9e464fb7cac1c4bd6eff4df5572.tar.xz
hercules-3e2be49541f4f9e464fb7cac1c4bd6eff4df5572.zip
Finished most of the quest log code, still bits here and there but it's usable now.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12558 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/mmo.h')
-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;
};