summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorEyesOfAHawk <blackoutro2006@gmail.com>2019-02-28 03:30:54 +1300
committerEyesOfAHawk <blackoutro2006@gmail.com>2019-02-28 03:30:54 +1300
commitf70a887b188dbd88c45c9992cd18a33b6886005f (patch)
tree060edb33fa2a4fb48e76bc21eafd0e514d99df36 /src/map/map.h
parent1ac84c2dd856087a4a72fec95b3322137187637a (diff)
downloadhercules-f70a887b188dbd88c45c9992cd18a33b6886005f.tar.gz
hercules-f70a887b188dbd88c45c9992cd18a33b6886005f.tar.bz2
hercules-f70a887b188dbd88c45c9992cd18a33b6886005f.tar.xz
hercules-f70a887b188dbd88c45c9992cd18a33b6886005f.zip
Adds 'cell_noskill' which blocks skill usage.
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h
index ace2a35a1..6c09746a6 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -656,6 +656,7 @@ typedef enum {
CELL_NOCHAT,
CELL_ICEWALL,
CELL_NOICEWALL,
+ CELL_NOSKILL,
} cell_t;
@@ -680,6 +681,7 @@ typedef enum {
CELL_CHKNOCHAT,
CELL_CHKICEWALL,
CELL_CHKNOICEWALL,
+ CELL_CHKNOSKILL,
} cell_chk;
@@ -698,7 +700,8 @@ struct mapcell {
novending : 1,
nochat : 1,
icewall : 1,
- noicewall : 1;
+ noicewall : 1,
+ noskill : 1;
#ifdef CELL_NOSTACK
int cell_bl; //Holds amount of bls in this cell.