summaryrefslogtreecommitdiff
path: root/src/xtra2.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:42 +0100
committerBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:42 +0100
commitca352fcaf16405a6edf348cca431ea173511af3f (patch)
treeb2253f8f5dff38e90b3243bd1546ff1fd0c12d49 /src/xtra2.cc
parentd192b228ed08575b7247afc3a3a880550a66637f (diff)
Replace PRACE_FLAG{,2} macros with functions
Diffstat (limited to 'src/xtra2.cc')
-rw-r--r--src/xtra2.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xtra2.cc b/src/xtra2.cc
index fcd71db3..07747a32 100644
--- a/src/xtra2.cc
+++ b/src/xtra2.cc
@@ -1337,7 +1337,7 @@ bool_ set_stun(int v)
/* Hack -- Force good values */
v = (v > 10000) ? 10000 : (v < 0) ? 0 : v;
- if (PRACE_FLAG(PR1_NO_STUN)) v = 0;
+ if (race_flags1_p(PR1_NO_STUN)) v = 0;
/* Knocked out */
if (p_ptr->stun > 100)
@@ -1498,7 +1498,7 @@ bool_ set_cut(int v)
/* Hack -- Force good values */
v = (v > 10000) ? 10000 : (v < 0) ? 0 : v;
- if (PRACE_FLAG(PR1_NO_CUT)) v = 0;
+ if (race_flags1_p(PR1_NO_CUT)) v = 0;
/* Mortal wound */
if (p_ptr->cut > 1000)
@@ -1973,7 +1973,7 @@ void check_experience(void)
if (p_ptr->lev > p_ptr->max_plv)
{
p_ptr->max_plv = p_ptr->lev;
- if ((PRACE_FLAG(PR1_CORRUPT)) &&
+ if ((race_flags1_p(PR1_CORRUPT)) &&
(randint(3) == 1))
{
level_corruption = TRUE;
@@ -2102,7 +2102,7 @@ void gain_exp(s32b amount)
}
}
- if ((p_ptr->max_exp > 0) && (PRACE_FLAG(PR1_CORRUPT)))
+ if ((p_ptr->max_exp > 0) && (race_flags1_p(PR1_CORRUPT)))
{
if ((randint(p_ptr->max_exp) < amount) || (randint(12000000) < amount))
{