summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorDShaligram <DShaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-08-15 10:45:51 +0000
committerDShaligram <DShaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-08-15 10:45:51 +0000
commit0d9cfab608b3ed662b6fc687ba94008e623088d1 (patch)
tree71c56f255eb5d7872123ba7b9610d04a8133f87b /crawl-ref/source/item_use.cc
parentaa6e0f9a964e4aeb51e4b4a2b3e22d594a51f78d (diff)
downloadcrawl-ref-0d9cfab608b3ed662b6fc687ba94008e623088d1.tar.gz
crawl-ref-0d9cfab608b3ed662b6fc687ba94008e623088d1.zip
r28@calamity: dshaligram | 2006-08-15 16:03:39 +051800
* Updated README for Stone Soup * Tweaked shield blocking chances to increase the role of shield skill (beam.cc and fight.cc) * Changed title to Dungeon Crawl Stone Soup (chardump.cc and command.cc) and changed version to 0.1 (version.h) to avoid confusion with regular Crawl and crawl-ref itself. * Added warp weapon spell (item_use.cc, spells2.cc, spl-book.cc). * Fixed makefile.mgw to use correct Lua library names and compile libw32c.cc correctly. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@17 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index a153dbf6a3..a2dbfe1fdd 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -2543,11 +2543,15 @@ static bool affix_weapon_enchantment( void )
break;
case SPWPN_DISTORTION:
+ // [dshaligram] Attempting to fix a distortion brand gets you a free
+ // distortion effect, and no permabranding. Sorry, them's the breaks.
strcat(info, " twongs alarmingly.");
mpr(info);
// from unwield_item
- miscast_effect( SPTYP_TRANSLOCATION, 9, 90, 100, "a distortion effect" );
+ miscast_effect( SPTYP_TRANSLOCATION, 9, 90, 100,
+ "a distortion effect" );
+ success = false;
break;
default: