diff options
author | shennetsind <ind@henn.et> | 2014-11-03 07:44:25 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2014-11-03 07:44:25 -0200 |
commit | bd0c805f732a3ec43ad253b6d2618be6fb640cdd (patch) | |
tree | 6f7e1b061fd009be6b7f8c24b5e7c35f0f22210e /src/map/itemdb.c | |
parent | fcb3ad0731907ab004928d5e21280aacdfe459bc (diff) | |
download | hercules-bd0c805f732a3ec43ad253b6d2618be6fb640cdd.tar.gz hercules-bd0c805f732a3ec43ad253b6d2618be6fb640cdd.tar.bz2 hercules-bd0c805f732a3ec43ad253b6d2618be6fb640cdd.tar.xz hercules-bd0c805f732a3ec43ad253b6d2618be6fb640cdd.zip |
Missing 'type' field in itemdb now defaults to IT_ETC rather than IT_UNKNOWN
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r-- | src/map/itemdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c index 0d3146191..e6210f871 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -1713,7 +1713,7 @@ int itemdb_readdb_libconfig_sub(config_setting_t *it, int n, const char *source) if( libconfig->setting_lookup_int(it, "Type", &i32) ) id.type = i32; else if( !inherit ) - id.type = IT_UNKNOWN; + id.type = IT_ETC; if( libconfig->setting_lookup_int(it, "Buy", &i32) ) id.value_buy = i32; |