summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-05 13:16:37 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-05 13:16:37 +0000
commit09a89593b983a9ade807175192fcf63971748f7c (patch)
tree155e93385dfbf0d649f9c4ea4b6ddc4dbddada30 /src/map/map.h
parent3a6eb585d49b8c9fadaecddd25ef4b667f814777 (diff)
downloadhercules-09a89593b983a9ade807175192fcf63971748f7c.tar.gz
hercules-09a89593b983a9ade807175192fcf63971748f7c.tar.bz2
hercules-09a89593b983a9ade807175192fcf63971748f7c.tar.xz
hercules-09a89593b983a9ade807175192fcf63971748f7c.zip
- Made the struct weapon_atk lhw in status_data a static member rather than a pointer as requested by Ultra Mage.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11858 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h
index dcc2412d1..2608cee05 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -356,7 +356,7 @@ struct status_data {
size, race;
signed char
def, mdef;
- struct weapon_atk rhw, *lhw; //Right Hand/Left Hand Weapon. Only players have a lhw (hence it's a pointer)
+ struct weapon_atk rhw, lhw; //Right Hand/Left Hand Weapon.
};
struct script_reg {
@@ -512,7 +512,6 @@ struct map_session_data {
struct unit_data ud;
struct view_data vd;
struct status_data base_status, battle_status;
- struct weapon_atk base_lhw, battle_lhw; //Left-hand weapon atk data.
struct status_change sc;
struct regen_data regen;
struct regen_data_sub sregen, ssregen;