diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-03 02:51:45 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-03 02:51:45 +0000 |
commit | dd90153762be1de239e2e6d244dd25d50e5c2fe4 (patch) | |
tree | 75a2e3b38d74a859b731357bcfd03a1ebdfa138f /src/map/map.h | |
parent | 6c1bf412e2ed8a8578c55149dd64e3755499f2af (diff) | |
download | hercules-dd90153762be1de239e2e6d244dd25d50e5c2fe4.tar.gz hercules-dd90153762be1de239e2e6d244dd25d50e5c2fe4.tar.bz2 hercules-dd90153762be1de239e2e6d244dd25d50e5c2fe4.tar.xz hercules-dd90153762be1de239e2e6d244dd25d50e5c2fe4.zip |
- Added the skill-related variables to pet_data, removed the pet skill delay structure.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5440 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index ddbb776ee..a7a10c168 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -950,6 +950,9 @@ struct pet_data { struct skill_unit_group skillunit[MAX_MOBSKILLUNITGROUP]; // [Valaris]
struct skill_unit_group_tickset skillunittick[MAX_SKILLUNITGROUPTICKSET]; // [Valaris]
struct map_session_data *msd;
+
+ int skilltarget;
+ short skillx,skilly,skillid,skilllv;
};
enum { MS_IDLE,MS_WALK,MS_ATTACK,MS_DEAD,MS_DELAY };
|