diff options
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. |