summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/map/map.h b/src/map/map.h
index a9699efc2..861a55d0a 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -496,8 +496,8 @@ struct iwall_data {
bool shootable;
};
-struct adjust_unit_duration {
- int skill_id;
+struct mapflag_skill_adjust {
+ unsigned short skill_id;
unsigned short modifier;
};
@@ -594,8 +594,12 @@ struct map_data {
int instance_id;
int instance_src_map;
- struct adjust_unit_duration **units;
+ /* adjust_unit_duration mapflag */
+ struct mapflag_skill_adjust **units;
unsigned short unit_count;
+ /* adjust_skill_damage mapflag */
+ struct mapflag_skill_adjust **skills;
+ unsigned short skill_count;
};
/// Stores information about a remote map (for multi-mapserver setups).