summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-23 05:09:58 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-23 05:09:58 +0000
commitb76c39a89a7f3339e6775f42a4ae0ab0105fb55c (patch)
tree896579dc0fae7351ac1d3d44461c13d8c265193a /crawl-ref/source
parent189d650ca274ab83c4fe3902e5d4e1bdf49dad4e (diff)
downloadcrawl-ref-b76c39a89a7f3339e6775f42a4ae0ab0105fb55c.tar.gz
crawl-ref-b76c39a89a7f3339e6775f42a4ae0ab0105fb55c.zip
Add more miscellaneous minor fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6070 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/dat/database/godspeak.txt2
-rw-r--r--crawl-ref/source/xom.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/dat/database/godspeak.txt b/crawl-ref/source/dat/database/godspeak.txt
index 3b5624c4fe..71cc6adc0a 100644
--- a/crawl-ref/source/dat/database/godspeak.txt
+++ b/crawl-ref/source/dat/database/godspeak.txt
@@ -103,7 +103,7 @@ Xom lures something onto this plane.
Xom opens a gate.
%%%%
# higher demonic being
-Xom single demon summon
+Xom single major demon summon
Xom grants you a demonic assistant.
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index d592368cee..d1101c3129 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -217,7 +217,7 @@ static void _xom_make_item(object_class_type base,
god_acting gdact(GOD_XOM);
- move_item_to_grid( &thing_created, you.x_pos, you.y_pos );
+ move_item_to_grid(&thing_created, you.x_pos, you.y_pos);
mitm[thing_created].inscription = "god gift";
canned_msg(MSG_SOMETHING_APPEARS);
stop_running();
@@ -656,7 +656,7 @@ static bool _xom_is_good(int sever)
if (different)
god_speaks(GOD_XOM, _get_xom_speech("single major holy summon"));
else
- god_speaks(GOD_XOM, _get_xom_speech("single demon summon"));
+ god_speaks(GOD_XOM, _get_xom_speech("single major demon summon"));
beh_type beha = BEH_FRIENDLY;
unsigned short hitting = you.pet_target;