summaryrefslogtreecommitdiff
path: root/src/cmd1.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/cmd1.cc
parentd192b228ed08575b7247afc3a3a880550a66637f (diff)
Replace PRACE_FLAG{,2} macros with functions
Diffstat (limited to 'src/cmd1.cc')
-rw-r--r--src/cmd1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd1.cc b/src/cmd1.cc
index a5c882b9..96cb3826 100644
--- a/src/cmd1.cc
+++ b/src/cmd1.cc
@@ -2890,7 +2890,7 @@ bool_ player_can_enter(byte feature)
/* Player can not walk through "walls" unless in Shadow Form */
- if (p_ptr->wraith_form || (PRACE_FLAG(PR1_SEMI_WRAITH)))
+ if (p_ptr->wraith_form || (race_flags1_p(PR1_SEMI_WRAITH)))
pass_wall = TRUE;
else
pass_wall = FALSE;