summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-04-07 16:16:17 +0200
committerBardur Arantsson <bardur@scientician.net>2012-04-07 17:49:18 +0200
commitb6c2bf9050a56841bb5a82549fd36a98b03e2f41 (patch)
tree3f5f7d75af05de6306ad7fb6ce9155a663e91c5d /src/types.h
parent838246d8d5d9febf38452f82692b25d7dc092ef3 (diff)
Lua: Remove unnecessary dynamism from "powers" handling
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types.h b/src/types.h
index cd08476a..1c9df3f8 100644
--- a/src/types.h
+++ b/src/types.h
@@ -1827,8 +1827,8 @@ struct player_type
bool_ astral; /* We started at the bottom ? */
/* Powers */
- bool_ *powers; /* Actual powers */
- bool_ powers_mod[POWER_MAX_INIT]; /* Intrinsinc powers */
+ bool_ powers[POWER_MAX]; /* Actual powers */
+ bool_ powers_mod[POWER_MAX]; /* Intrinsinc powers */
/* Skills */
s16b skill_points;