summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-03 19:59:48 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-03 19:59:48 +0000
commitbb0a08a67c73be469c130567ec9e6c5b8a4a2963 (patch)
treedce696635219fd87cdc01fe6a04718a55b217f0f /src/map/map.c
parent695aa3dbc9810b7ad25f2eb4e1c3eb92ba6926f3 (diff)
downloadhercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.tar.gz
hercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.tar.bz2
hercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.tar.xz
hercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.zip
- Char-server SQL won't perform the reconnect cleanup routines when kick_on_disconnect is disabled.
- Renamed summons_inherit_effects to summons_trigger_autospells as the setting now only makes the attacks of the slaves trigger the autospells of the master (as it should be). - Corrected code capping no_spawn_on_player to 50 when the max should be 100. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7459 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r--src/map/map.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/map/map.c b/src/map/map.c
index c43ed5ca2..a93b03257 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -3124,12 +3124,7 @@ int map_readallmaps (void)
size = map[i].bxs * map[i].bys * sizeof(int);
map[i].block_count = (int*)aCallocA(size, 1);
- // Already initialized in aCallocA
- //memset(map[i].block_count, 0, size);
-
map[i].block_mob_count = (int*)aCallocA(size, 1);
- // Already initialized in aCallocA
- //memset(map[i].block_mob_count, 0, size);
uidb_put(map_db, (unsigned int)map[i].index, &map[i]);