summaryrefslogtreecommitdiff
path: root/src/map/pc.h
diff options
context:
space:
mode:
authorKenpachi Developer <Kenpachi.Developer@gmx.de>2020-04-21 05:09:27 +0200
committerKenpachi Developer <Kenpachi.Developer@gmx.de>2020-05-10 21:23:46 +0200
commitc7f34b53e5bd0da415daf7d08d9abc7fe5a68116 (patch)
treeb2ab651291f8234f125be213b37cef21771296e9 /src/map/pc.h
parent848e73703eeb15c650aee38eef46714d3863474f (diff)
downloadhercules-c7f34b53e5bd0da415daf7d08d9abc7fe5a68116.tar.gz
hercules-c7f34b53e5bd0da415daf7d08d9abc7fe5a68116.tar.bz2
hercules-c7f34b53e5bd0da415daf7d08d9abc7fe5a68116.tar.xz
hercules-c7f34b53e5bd0da415daf7d08d9abc7fe5a68116.zip
Add struct autocast_data auto_cast_current to struct map_session_data
Diffstat (limited to 'src/map/pc.h')
-rw-r--r--src/map/pc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h
index 32b7197a8..d548339b2 100644
--- a/src/map/pc.h
+++ b/src/map/pc.h
@@ -193,6 +193,7 @@ struct map_session_data {
struct regen_data regen;
struct regen_data_sub sregen, ssregen;
struct autocast_data autocast;
+ struct autocast_data auto_cast_current; // Currently processed auto-cast skill.
VECTOR_DECL(struct autocast_data) auto_cast; // Auto-cast vector.
//NOTE: When deciding to add a flag to state or special_state, take into consideration that state is preserved in
//status_calc_pc, while special_state is recalculated in each call. [Skotlex]