summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-15 19:23:40 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-15 19:23:40 +0000
commitea74f11cfb8f8ff1bc47473447b9ee76419c36e9 (patch)
treed8cacbeb6c6d436a2707a707dfd280b5039b8f91 /crawl-ref/source
parentfd4e339d3cbdc57fc9d5d70b6fd10add8c7bd166 (diff)
downloadcrawl-ref-ea74f11cfb8f8ff1bc47473447b9ee76419c36e9.tar.gz
crawl-ref-ea74f11cfb8f8ff1bc47473447b9ee76419c36e9.zip
Add more minor religious help fixes: Remove an unneeded newline from the
Shining One's description, and shift his religious help down to where Zin's is, so that it doesn't overwrite his fourth power. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3277 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/dat/descript/gods.txt5
-rw-r--r--crawl-ref/source/describe.cc2
2 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/dat/descript/gods.txt b/crawl-ref/source/dat/descript/gods.txt
index 9198612e3e..51671c65d4 100644
--- a/crawl-ref/source/dat/descript/gods.txt
+++ b/crawl-ref/source/dat/descript/gods.txt
@@ -28,9 +28,8 @@ granted blessings on their weapons and the ability to summarily
dispense the wrath of heaven, but must never use any form of evil
magic and should fight honourably. The Shining One appreciates
long-standing persistence in the endless crusade, as well as the
-dedicated destruction of unholy creatures.
-The Shining One is a good god, and does not mind switching to another
-good god.
+dedicated destruction of unholy creatures. The Shining One is a good
+god, and does not mind switching to another good god.
%%%%
Kikubaaqudgha
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index d21deb18cb..735f225b6b 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2551,7 +2551,7 @@ void describe_god( god_type which_god, bool give_title )
// only give this additional information for worshippers
if ( which_god == you.religion )
{
- if (you.religion == GOD_ZIN)
+ if (you.religion == GOD_ZIN || you.religion == GOD_SHINING_ONE)
gotoxy(1, get_number_of_lines(), GOTO_CRT);
else
gotoxy(1, get_number_of_lines() - 2, GOTO_CRT);