diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-30 16:53:56 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-30 16:53:56 +0000 |
commit | 9b4059fbdfc3ad77a1102dfdac0146797182d97a (patch) | |
tree | 8775a9776bcfabac4dbff7fc0096382618ab71c6 /src/map/map.h | |
parent | 55fee732fa5e5056268bee29a7b2d1d28ed6022c (diff) | |
download | hercules-9b4059fbdfc3ad77a1102dfdac0146797182d97a.tar.gz hercules-9b4059fbdfc3ad77a1102dfdac0146797182d97a.tar.bz2 hercules-9b4059fbdfc3ad77a1102dfdac0146797182d97a.tar.xz hercules-9b4059fbdfc3ad77a1102dfdac0146797182d97a.zip |
- Added mapflag "nochat" to prevent chatting rooms from being created.
- Corrected some of the sleep checks when the char id does not matches with the char-id expected by the script engine.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7423 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index da8b1c715..20fe52b45 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -1084,6 +1084,7 @@ struct map_data { unsigned nodrop : 1;
unsigned novending : 1;
unsigned loadevent : 1;
+ unsigned nochat :1;
} flag;
struct point save;
struct npc_data *npc[MAX_NPC_PER_MAP];
|