diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-28 14:30:47 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-28 14:30:47 +0000 |
commit | ad245cf78e5433863b990b581483dcd1523526ce (patch) | |
tree | 1617d8451dda24f2ecf6980e6c1c52410a7ec18a /src/map/map.h | |
parent | cd3c81a17469d5b519bfde36dfbdc565937b466e (diff) | |
download | hercules-ad245cf78e5433863b990b581483dcd1523526ce.tar.gz hercules-ad245cf78e5433863b990b581483dcd1523526ce.tar.bz2 hercules-ad245cf78e5433863b990b581483dcd1523526ce.tar.xz hercules-ad245cf78e5433863b990b581483dcd1523526ce.zip |
- Corrected Musical Strike having a different damage equation from Throw Arrow.
- Some minor cleanup of Soul Change
- Added state rewarp to players. It gets set when a pc_setpos call is triggered while the player is changing maps so that when the player finish loading the map, it is inmediately rewarped to where it has been rewarped/recalled to.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7370 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 116ff25fd..7cdbb00cf 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -493,6 +493,7 @@ struct map_session_data { unsigned finalsave :1; //Signals whether the final save for the char was done or not yet. Meant to prevent exploits and the like. [Skotlex]
unsigned blockedmove :1;
unsigned using_fake_npc :1;
+ unsigned rewarp :1; //Signals that a player should warp as soon as he is done loading a map. [Skotlex]
unsigned short autoloot;
struct guild *gmaster_flag;
} state;
|