diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-23 04:32:38 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-23 04:32:38 +0000 |
commit | c73b9c6444ee0d7d9f91cce676c370b55ca234b7 (patch) | |
tree | f6e3c5c42e9455ec277fe210cfc491500b760307 /src/map/map.h | |
parent | f3bad5a9c57a123b9ae3f3070ef4edaa2f08698b (diff) | |
download | hercules-c73b9c6444ee0d7d9f91cce676c370b55ca234b7.tar.gz hercules-c73b9c6444ee0d7d9f91cce676c370b55ca234b7.tar.bz2 hercules-c73b9c6444ee0d7d9f91cce676c370b55ca234b7.tar.xz hercules-c73b9c6444ee0d7d9f91cce676c370b55ca234b7.zip |
Fixed bugreport:1017 a item dropping over a ice-wall-occupied cell is no longer lost/deleted.
Dev Note: the thing I added to sign icewalls may be suitable for bugreport:3574 as well
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15772 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index d8d0b00ea..ceddec555 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -401,6 +401,7 @@ typedef enum { CELL_NOVENDING, CELL_NOCHAT, CELL_MAELSTROM, + CELL_ICEWALL, } cell_t; @@ -424,6 +425,7 @@ typedef enum { CELL_CHKNOVENDING, CELL_CHKNOCHAT, CELL_CHKMAELSTROM, + CELL_CHKICEWALL, } cell_chk; @@ -442,7 +444,8 @@ struct mapcell landprotector : 1, novending : 1, nochat : 1, - maelstrom : 1; + maelstrom : 1, + icewall : 1; #ifdef CELL_NOSTACK unsigned char cell_bl; //Holds amount of bls in this cell. |