diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-09 16:52:24 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-09 16:52:24 +0000 |
commit | f7a7b1d041ff396d96468be30bc4914e626979b3 (patch) | |
tree | eadb9ef5f012dc1806186edeea43bb54e793a7ea /src/map/map.h | |
parent | 49000e689a2516db20060d88871762f5a3bcac39 (diff) | |
download | hercules-f7a7b1d041ff396d96468be30bc4914e626979b3.tar.gz hercules-f7a7b1d041ff396d96468be30bc4914e626979b3.tar.bz2 hercules-f7a7b1d041ff396d96468be30bc4914e626979b3.tar.xz hercules-f7a7b1d041ff396d96468be30bc4914e626979b3.zip |
- Moved perfect_hiding from state to special_state, so that it clears out when you remove your pet.
- Probably fixed the Taekwon Rest skills.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8687 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index 4249babd4..32394a3e7 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -575,7 +575,6 @@ struct map_session_data { // Abracadabra bugfix by Aru
unsigned abra_flag : 1;
unsigned autotrade : 1; //By Fantik
- unsigned perfect_hiding : 1; // [Valaris]
unsigned reg_dirty : 3; //By Skotlex (marks whether registry variables have been saved or not yet)
unsigned showdelay :1;
unsigned showexp :1;
@@ -607,6 +606,7 @@ struct map_session_data { unsigned no_sizefix : 1;
unsigned no_gemstone : 1;
unsigned intravision : 1; // Maya Purple Card effect allowing to see Hiding/Cloaking people [DracoRPG]
+ unsigned perfect_hiding : 1; // [Valaris]
} special_state;
int char_id, login_id1, login_id2, sex;
unsigned short class_; //This is the internal job ID used by the map server to simplify comparisons/queries/etc. [Skotlex]
|