summaryrefslogtreecommitdiff
path: root/src/q_god.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-04-09 11:16:40 +0200
committerBardur Arantsson <bardur@scientician.net>2012-04-09 11:44:10 +0200
commit4d4de63ce360e1b4fe6248b6e18ebd48f618d504 (patch)
tree59120f39245613f1c368242d941ea728b6e45397 /src/q_god.c
parentc81957d766f664bbffc5ec1976a5013f955e0d82 (diff)
Lua: Clean up handling of Theme GOD_* variables
Diffstat (limited to 'src/q_god.c')
-rw-r--r--src/q_god.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/q_god.c b/src/q_god.c
index 7c48f128..04a5eb15 100644
--- a/src/q_god.c
+++ b/src/q_god.c
@@ -951,19 +951,19 @@ static void set_god_dungeon_attributes()
{
quest_god_set_god_dungeon_attributes_yavanna();
}
- else if (p_ptr->pgod == get_god_AULE())
+ else if (p_ptr->pgod == GOD_AULE)
{
quest_god_set_god_dungeon_attributes_aule();
}
- else if (p_ptr->pgod == get_god_VARDA())
+ else if (p_ptr->pgod == GOD_VARDA)
{
quest_god_set_god_dungeon_attributes_varda();
}
- else if (p_ptr->pgod == get_god_ULMO())
+ else if (p_ptr->pgod == GOD_ULMO)
{
quest_god_set_god_dungeon_attributes_ulmo();
}
- else if (p_ptr->pgod == get_god_MANDOS())
+ else if (p_ptr->pgod == GOD_MANDOS)
{
quest_god_set_god_dungeon_attributes_mandos();
}