diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-10 20:50:55 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-10 20:50:55 +0000 |
commit | 8921a3023de5519f0e0af164d71023914c8656f3 (patch) | |
tree | 20ac266e3da2e1482954b9895e3c5389ab2927e8 /src/map/clif.h | |
parent | c62e4ce22fe01f8f355f8f47695da2c977102c1c (diff) | |
download | hercules-8921a3023de5519f0e0af164d71023914c8656f3.tar.gz hercules-8921a3023de5519f0e0af164d71023914c8656f3.tar.bz2 hercules-8921a3023de5519f0e0af164d71023914c8656f3.tar.xz hercules-8921a3023de5519f0e0af164d71023914c8656f3.zip |
* Added a safeguard to skill_get_unit_layout() against incorrectly defined layout ids (will give weird results but won't crash at least)
* Fixed Firewall/Icewall being oriented backwards (no real difference though...)
* Removed some junk Landprotector/Graffiti code; Graffiti doesn't get placed randomly anymore
* Icewall can now be cast on yourself... but for some reason, the cell on yourself immediately expires!
* Merged together functions clif_set0192() and clif_changemapcell()
- also removed its "send to whole map" mode which is just plain wrong (although aegis actually does use it to 'inform' caster about changes)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11175 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 54a643b85..db8dd92dd 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -229,7 +229,7 @@ int clif_marionette(struct block_list *src, struct block_list *target); int clif_spiritball(struct map_session_data *sd); int clif_combo_delay(struct block_list *src,int wait); int clif_bladestop(struct block_list *src,struct block_list *dst,int bool_); -void clif_changemapcell(short m, short x, short y, int cell_type, int type); +void clif_changemapcell(int fd, short m, short x, short y, int type); int clif_status_load(struct block_list *bl,int type, int flag); int clif_status_change(struct block_list *bl,int type,int flag); |