summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/beam.cc2
-rw-r--r--crawl-ref/source/religion.cc4
-rw-r--r--crawl-ref/source/spells4.cc4
3 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index c4ae949a47..5470dfb70a 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -3029,7 +3029,7 @@ static int _affect_wall(bolt &beam, const coord_def& p)
if (targ_grid == DNGN_ORCISH_IDOL
&& beam.beam_source == NON_MONSTER)
{
- did_god_conduct(DID_DESTROY_ORCISH_IDOL, 4);
+ did_god_conduct(DID_DESTROY_ORCISH_IDOL, 8);
}
beam.obvious_effect = true;
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 4608d04579..5d7021983e 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2862,8 +2862,8 @@ bool did_god_conduct(conduct_type thing_done, int level, bool known,
case DID_DESTROY_ORCISH_IDOL:
if (you.religion == GOD_BEOGH)
{
- piety_change = -level * 2;
- penance = level * 6;
+ piety_change = -level;
+ penance = level * 3;
ret = true;
}
break;
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index af2acc4cf8..bf66ec1c74 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -270,7 +270,7 @@ static int _shatter_walls(coord_def where, int pow, int garbage)
grd(where) = DNGN_FLOOR;
if (grid == DNGN_ORCISH_IDOL)
- did_god_conduct(DID_DESTROY_ORCISH_IDOL, 4);
+ did_god_conduct(DID_DESTROY_ORCISH_IDOL, 8);
return (1);
}
@@ -2029,7 +2029,7 @@ bool cast_fragmentation(int pow, const dist& spd)
explosion(beam, hole, true);
if (grid == DNGN_ORCISH_IDOL)
- did_god_conduct(DID_DESTROY_ORCISH_IDOL, 4);
+ did_god_conduct(DID_DESTROY_ORCISH_IDOL, 8);
}
else if (beam.damage.num == 0)
{