summaryrefslogtreecommitdiff
path: root/src/spells2.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
commitcc857c940cfe1bfe8d78674dbce53e5b71acaf41 (patch)
treed1e62b5c66b9bd3d0f8cf1873b8dd858060816c5 /src/spells2.cc
parent5a3f511fd036dd73152786e83f32c32f274f2398 (diff)
Move ability_type::acquired to p_ptr struct
This is justified by the fact that the 'acquired' flag is actually a player-centered bit of information and must be loaded/saved. Everything else in ability_type is defined by the *.txt files.
Diffstat (limited to 'src/spells2.cc')
-rw-r--r--src/spells2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spells2.cc b/src/spells2.cc
index 0cdf08ed..bc5b8642 100644
--- a/src/spells2.cc
+++ b/src/spells2.cc
@@ -3623,7 +3623,7 @@ bool_ recharge(int power)
/*** Determine Seriousness of Failure ***/
/* Mages recharge objects more safely. */
- if (has_ability(AB_PERFECT_CASTING))
+ if (p_ptr->has_ability(AB_PERFECT_CASTING))
{
/* 10% chance to blow up one rod, otherwise draining. */
if (o_ptr->tval == TV_ROD_MAIN)