summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-07 13:37:28 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-07 13:37:28 +0000
commita99e2d6093216bb800999f6aae8c5bd01690aaa0 (patch)
tree2bde8759b8167bd44a3eb05e37fdd1ab8f410d6f /crawl-ref
parent673859ea2ec2512b37ce1c74a0ea9c0412f43282 (diff)
downloadcrawl-ref-a99e2d6093216bb800999f6aae8c5bd01690aaa0.tar.gz
crawl-ref-a99e2d6093216bb800999f6aae8c5bd01690aaa0.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6441 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/dat/descript/monsters.txt3
-rw-r--r--crawl-ref/source/monstuff.cc3
-rw-r--r--crawl-ref/source/mstuff2.cc4
3 files changed, 4 insertions, 6 deletions
diff --git a/crawl-ref/source/dat/descript/monsters.txt b/crawl-ref/source/dat/descript/monsters.txt
index 84d33ef884..1ab7fffe8b 100644
--- a/crawl-ref/source/dat/descript/monsters.txt
+++ b/crawl-ref/source/dat/descript/monsters.txt
@@ -1378,8 +1378,7 @@ A disgusting glob of grey sludge.
%%%%
orange crystal statue
-An intricately carved statue of glittering orange crystal. Its eyes
-fix on yours with a piercing gaze.
+An intricately carved statue of glittering orange crystal. Its eyes fix on yours with a piercing gaze.
It looks brittle.
%%%%
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 643e0b2d37..02aaf1d4c5 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -3916,9 +3916,8 @@ static bool _handle_special_ability(monsters *monster, bolt & beem)
case MONS_ORANGE_STATUE:
if (_is_player_or_mon_sanct(monster))
- {
break;
- }
+
used = orange_statue_effects(monster);
break;
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index cc0303ea60..4a659c9669 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -2394,8 +2394,8 @@ bool orange_statue_effects(monsters *mons)
{
mpr("A hostile presence attacks your mind!", MSGCH_WARN);
- miscast_effect( SPTYP_DIVINATION, random2(15), random2(150), 100,
- "an orange crystal statue" );
+ miscast_effect(SPTYP_DIVINATION, random2(15), random2(150), 100,
+ "an orange crystal statue");
return (true);
}