summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-27 14:17:14 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-27 14:17:14 +0000
commitbfdb9f0246ab4f774e612f6cc34524e35a113d88 (patch)
tree6198262d6f9f8b5ec9dae23732c5cd55fb540a9a /src/map/map.h
parentd1a2dd2086001923ef54f4a2c84b569b6a36da00 (diff)
downloadhercules-bfdb9f0246ab4f774e612f6cc34524e35a113d88.tar.gz
hercules-bfdb9f0246ab4f774e612f6cc34524e35a113d88.tar.bz2
hercules-bfdb9f0246ab4f774e612f6cc34524e35a113d88.tar.xz
hercules-bfdb9f0246ab4f774e612f6cc34524e35a113d88.zip
* Removed NODAMAGE and ICEWALL cell types (mem usage back to normal)
- Icewall now uses basic cell type 5 (nonwalkable, shootable) - as a consequence, you can now warp to a nonwalkable cell - but only via gm command or scripted warp bug (hopefully :) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12247 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/map/map.h b/src/map/map.h
index f04ae9340..d0716ba8e 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -1104,9 +1104,7 @@ typedef enum {
CELL_NPC,
CELL_BASILICA,
CELL_LANDPROTECTOR,
- CELL_ICEWALL,
CELL_NOVENDING,
- CELL_NODAMAGE,
CELL_NOCHAT,
} cell_t;
@@ -1127,9 +1125,7 @@ typedef enum {
CELL_CHKNPC,
CELL_CHKBASILICA,
CELL_CHKLANDPROTECTOR,
- CELL_CHKICEWALL,
CELL_CHKNOVENDING,
- CELL_CHKNODAMAGE,
CELL_CHKNOCHAT,
} cell_chk;
@@ -1146,9 +1142,7 @@ struct mapcell
npc : 1,
landprotector : 1,
basilica : 1,
- icewall : 1,
novending : 1,
- nodamage : 1,
nochat : 1;
#ifdef CELL_NOSTACK