summaryrefslogtreecommitdiff
path: root/src/map/data/itemd.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-04-02 23:57:56 +0300
committerAndrei Karas <akaras@inbox.ru>2015-04-02 23:57:56 +0300
commitea151b73fd14c5d9ced60979b91c7d13cf0c4422 (patch)
treec35e3addd2fa1f10f6cbaa38f186582e2b532a52 /src/map/data/itemd.c
parent179e2a097cdf9190c46a3e4c93eee5535e707530 (diff)
downloadevol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.tar.gz
evol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.tar.bz2
evol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.tar.xz
evol-hercules-ea151b73fd14c5d9ced60979b91c7d13cf0c4422.zip
map: add new attributes to item_db.
New attributes RequiredDef, RequiredMDef.
Diffstat (limited to 'src/map/data/itemd.c')
-rw-r--r--src/map/data/itemd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/data/itemd.c b/src/map/data/itemd.c
index 468c072..974c86c 100644
--- a/src/map/data/itemd.c
+++ b/src/map/data/itemd.c
@@ -58,5 +58,7 @@ struct ItemdExt *itemd_create(void)
data->requiredAtk = 0;
data->requiredMAtkMin = 0;
data->requiredMAtkMax = 0;
+ data->requiredDef = 0;
+ data->requiredMDef = 0;
return data;
}