summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-03 18:45:58 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-03 18:45:58 +0000
commit6ad2ff13db0746d82faad381d54127e6c8958190 (patch)
treeac11963fd5d061f200a597fb86a221de4671fc7f /crawl-ref/source/item_use.cc
parent718202ee6b6445890db808f4420073e2cce506c2 (diff)
downloadcrawl-ref-6ad2ff13db0746d82faad381d54127e6c8958190.tar.gz
crawl-ref-6ad2ff13db0746d82faad381d54127e6c8958190.zip
Fixed debug fight simulator.
Dialed javelin base damage down a notch. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1733 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index b2877bda6c..febacf4c5a 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -1394,7 +1394,7 @@ static int dex_adjust_thrown_tohit(int hit)
//
// Return value is only relevant if dummy_target is non-NULL, and returns
// true if dummy_target is hit.
-bool throw_it(struct bolt &pbolt, int throw_2, bool teleport, int acc_bonus)
+bool throw_it(bolt &pbolt, int throw_2, bool teleport, int acc_bonus)
{
struct dist thr;
char shoot_skill = 0;
@@ -2030,7 +2030,8 @@ bool throw_it(struct bolt &pbolt, int throw_2, bool teleport, int acc_bonus)
}
// Add in bonus (only from Portaled Projectile for now)
- pbolt.hit += acc_bonus;
+ if (acc_bonus != DEBUG_COOKIE)
+ pbolt.hit += acc_bonus;
scale_dice( pbolt.damage );
@@ -2060,7 +2061,8 @@ bool throw_it(struct bolt &pbolt, int throw_2, bool teleport, int acc_bonus)
{
// Violating encapsulation somewhat...oh well.
hit = (affect( pbolt, pbolt.target_x, pbolt.target_y ) != 0);
- beam_drop_object( pbolt, &item, pbolt.target_x, pbolt.target_y );
+ if (acc_bonus != DEBUG_COOKIE)
+ beam_drop_object( pbolt, &item, pbolt.target_x, pbolt.target_y );
}
else
{