summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-07-09 20:47:06 -0300
committershennetsind <ind@henn.et>2013-07-09 20:47:06 -0300
commit610b7cec30903bac4ba734c6627b450390dad905 (patch)
tree26568c09510316d4f1b9ffabaa4af8aaa91ed805 /src/map/map.c
parentb08910e828bd6f2029f2434572d8f84b30eb7d9c (diff)
downloadhercules-610b7cec30903bac4ba734c6627b450390dad905.tar.gz
hercules-610b7cec30903bac4ba734c6627b450390dad905.tar.bz2
hercules-610b7cec30903bac4ba734c6627b450390dad905.tar.xz
hercules-610b7cec30903bac4ba734c6627b450390dad905.zip
Fixed Bug #7497
Special Thanks to shenhuyong, kyeme. http://hercules.ws/board/tracker/issue-7497-iditem-idq/ Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/map.c')
-rw-r--r--src/map/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c
index 68ac650c7..05ba2edc2 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -4452,7 +4452,7 @@ unsigned short map_zone_str2itemid(const char *name) {
if( !name )
return 0;
- if( name[0] == 'I' && name[1] == 'D' && strlen(name) <= 7 ) {
+ if( name[0] == 'I' && name[1] == 'D' && strlen(name) < 8 ) {
if( !( data = itemdb->exists(atoi(name+2))) ) {
return 0;
}
@@ -4469,7 +4469,7 @@ unsigned short map_zone_str2skillid(const char *name) {
if( !name )
return 0;
- if( name[0] == 'I' && name[1] == 'D' && strlen(name) <= 7 ) {
+ if( name[0] == 'I' && name[1] == 'D' && strlen(name) < 8 ) {
if( !skill->get_index((nameid = atoi(name+2))) )
return 0;
} else {