summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ghost.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-13 14:27:35 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-13 14:27:35 +0000
commitc5a3023550aad819777f9d0e311cc81edeea496a (patch)
treed32796f43dadefae8aca64441a1aec24e3c32c88 /crawl-ref/source/ghost.cc
parentf318a3d8c4a05ab0b3f815567723250b82b9e60d (diff)
downloadcrawl-ref-c5a3023550aad819777f9d0e311cc81edeea496a.tar.gz
crawl-ref-c5a3023550aad819777f9d0e311cc81edeea496a.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5022 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/ghost.cc')
-rw-r--r--crawl-ref/source/ghost.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index 3681aea8c7..2225ac7dc8 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -30,6 +30,7 @@ std::vector<ghost_demon> ghosts;
when finding spells to be remembered by a player's ghost:
*/
static spell_type search_order_conj[] = {
+/* 0 */
SPELL_LEHUDIBS_CRYSTAL_SPEAR,
SPELL_BOLT_OF_DRAINING,
SPELL_AGONY,
@@ -40,6 +41,7 @@ static spell_type search_order_conj[] = {
SPELL_BOLT_OF_MAGMA,
SPELL_ICE_BOLT,
SPELL_BOLT_OF_FIRE,
+/* 10 */
SPELL_BOLT_OF_COLD,
SPELL_FIREBALL,
SPELL_DELAYED_FIREBALL,
@@ -50,6 +52,7 @@ static spell_type search_order_conj[] = {
SPELL_THROW_FROST,
SPELL_PAIN,
SPELL_STING,
+/* 20 */
SPELL_SHOCK,
SPELL_MAGIC_DART,
SPELL_SLEEP,
@@ -72,10 +75,10 @@ static spell_type search_order_third[] = {
SPELL_SUMMON_UGLY_THING,
SPELL_SUMMON_ICE_BEAST,
SPELL_ANIMATE_DEAD,
+/* 10 */
SPELL_INVISIBILITY,
SPELL_CALL_IMP,
SPELL_SUMMON_SMALL_MAMMAL,
-/* 10 */
SPELL_CONTROLLED_BLINK,
SPELL_BLINK,
SPELL_NO_SPELL, // end search
@@ -98,6 +101,7 @@ static spell_type search_order_misc[] = {
SPELL_POLYMORPH_OTHER,
SPELL_TELEPORT_OTHER,
SPELL_DIG,
+/* 10 */
SPELL_BACKLIGHT,
SPELL_NO_SPELL, // end search
};