summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-15 19:30:58 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-15 19:30:58 +0000
commit35c7324f5f2f1a5f1dc4fa690020fcbd0c18d891 (patch)
tree32e1f80a817a307254862698e8d81127684ed748 /src/map/atcommand.c
parent89b9949be05475aff1be28ef1e3a2a18add12cf2 (diff)
downloadhercules-35c7324f5f2f1a5f1dc4fa690020fcbd0c18d891.tar.gz
hercules-35c7324f5f2f1a5f1dc4fa690020fcbd0c18d891.tar.bz2
hercules-35c7324f5f2f1a5f1dc4fa690020fcbd0c18d891.tar.xz
hercules-35c7324f5f2f1a5f1dc4fa690020fcbd0c18d891.zip
fixed spawn of treasure boxes
fixed present_log Mobs drops: expanded 8 slots into 10 (except READING info from TXT / SQL dbs. But added a plug - to make eA work with old DBs) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1115 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 90db2f5c3..12e6c2306 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -8994,7 +8994,7 @@ int atcommand_mobinfo(
}
strcpy(output," Drops:");
j=0;
- for (i=0; i<8; i++) {
+ for (i=0; i<10; i++) { // 8 -> 10 Lupus
if ( mob_db[mob_id].dropitem[i].nameid<=0 || mob_db[mob_id].dropitem[i].p<=0)
continue;
if( (item_data = itemdb_search(mob_db[mob_id].dropitem[i].nameid)) == NULL)