diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-11 22:14:50 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-11 22:14:50 +0000 |
commit | f24a3d43c43fc28c292cd7af10defae894aedc6d (patch) | |
tree | 3bdc85ce1e475a38440d155567587ee2ba59cfc0 /src/map/map.c | |
parent | 15d0d129834b212fa00285afa412cbb38f97ca6b (diff) | |
download | hercules-f24a3d43c43fc28c292cd7af10defae894aedc6d.tar.gz hercules-f24a3d43c43fc28c292cd7af10defae894aedc6d.tar.bz2 hercules-f24a3d43c43fc28c292cd7af10defae894aedc6d.tar.xz hercules-f24a3d43c43fc28c292cd7af10defae894aedc6d.zip |
- Fixed pet equip not displaying correctly at all (closes topic:153753)
- Removed old fixpos packet (the 'new' one is way smaller)
- Fixed some major logical typos in the code, cleaned up many places
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10746 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index ccf136040..51ff269b8 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -342,8 +342,9 @@ void map_delblcell(struct block_list *bl) /*========================================== * Adds a block to the map. - * If flag is 1, then the block was just added + * If flag is 1, then the block was just added, * otherwise it is part of a transition. + * Returns 0 on success, 1 on failure (illegal coordinates). *------------------------------------------*/ int map_addblock_sub (struct block_list *bl, int flag) { |