diff options
author | shinomori <shinomori@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-23 10:58:04 +0000 |
---|---|---|
committer | shinomori <shinomori@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-23 10:58:04 +0000 |
commit | 8f76148e09a0927ca15abc7126b98baa4f41b1dd (patch) | |
tree | 9828af97db8a3a549ab5723b7def710e47bcde32 /src/map/map.c | |
parent | 80b00a7c1c9c01d6fed95d2ced96c1ac715da26d (diff) | |
download | hercules-8f76148e09a0927ca15abc7126b98baa4f41b1dd.tar.gz hercules-8f76148e09a0927ca15abc7126b98baa4f41b1dd.tar.bz2 hercules-8f76148e09a0927ca15abc7126b98baa4f41b1dd.tar.xz hercules-8f76148e09a0927ca15abc7126b98baa4f41b1dd.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6239 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index f3106668e..507c36b1c 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -3057,7 +3057,11 @@ int map_readallmaps (void) map[i].bxs = (map[i].xs + BLOCK_SIZE - 1) / BLOCK_SIZE; map[i].bys = (map[i].ys + BLOCK_SIZE - 1) / BLOCK_SIZE; - + + // default experience multiplicator + map[i].jexp = 100; + map[i].bexp = 100; + size = map[i].bxs * map[i].bys * sizeof(struct block_list*); map[i].block = (struct block_list**)aCalloc(size, 1); map[i].block_mob = (struct block_list**)aCalloc(size, 1); |