|
From: <dsh...@us...> - 2007-04-02 05:35:36
|
Revision: 1184
http://svn.sourceforge.net/crawl-ref/?rev=1184&view=rev
Author: dshaligram
Date: 2007-04-01 22:35:34 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
Change description of staves of wizardry to be more similar to rings of
wizardry (which have a more accurate description anyway) (aristotle).
Modified Paths:
--------------
trunk/crawl-ref/source/describe.cc
trunk/crawl-ref/source/monstuff.cc
Modified: trunk/crawl-ref/source/describe.cc
===================================================================
--- trunk/crawl-ref/source/describe.cc 2007-04-02 05:16:26 UTC (rev 1183)
+++ trunk/crawl-ref/source/describe.cc 2007-04-02 05:35:34 UTC (rev 1184)
@@ -2861,8 +2861,8 @@
{
case STAFF_WIZARDRY:
description +=
- "increases the magical proficiency of its wielder by "
- "a considerable degree, increasing the power of their spells. ";
+ "significantly increases the ability of its wielder to use "
+ "magical spells. ";
break;
case STAFF_POWER:
Modified: trunk/crawl-ref/source/monstuff.cc
===================================================================
--- trunk/crawl-ref/source/monstuff.cc 2007-04-02 05:16:26 UTC (rev 1183)
+++ trunk/crawl-ref/source/monstuff.cc 2007-04-02 05:35:34 UTC (rev 1184)
@@ -1111,12 +1111,12 @@
monster_drop_ething(monster);
- // New monster type might be interesting
- mark_interesting_monst(monster);
+ // New monster type might be interesting
+ mark_interesting_monst(monster);
- // If new monster is visible to player, then we've seen it
- if (player_monster_visible(monster) && mons_near(monster))
- seen_monster(monster);
+ // If new monster is visible to player, then we've seen it
+ if (player_monster_visible(monster) && mons_near(monster))
+ seen_monster(monster);
return (player_messaged);
} // end monster_polymorph()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|