summaryrefslogtreecommitdiff
path: root/src/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/dungeon.cc')
-rw-r--r--src/dungeon.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dungeon.cc b/src/dungeon.cc
index bc5ec69c..824831cf 100644
--- a/src/dungeon.cc
+++ b/src/dungeon.cc
@@ -1016,7 +1016,7 @@ static bool_ grace_delay_trigger()
static void process_world_gods()
{
const char *race_name = rp_ptr->title;
- const char *subrace_name = rmp_ptr->title;
+ auto const &subrace_name = rmp_ptr->title;
if (p_ptr->pgod == GOD_VARDA)
{
@@ -1177,7 +1177,7 @@ static void process_world_gods()
if (grace_delay_trigger())
{
/* He loves astral beings */
- if (streq(subrace_name, "LostSoul"))
+ if (subrace_name == "LostSoul")
{
inc_piety(GOD_ALL, 1);
}
@@ -1189,7 +1189,7 @@ static void process_world_gods()
}
/* Really hates vampires and demons */
- if (streq(subrace_name, "Vampire") ||
+ if ((subrace_name == "Vampire") ||
streq(race_name, "Demon"))
{
inc_piety(GOD_ALL, -10);