From: arromdee Date: Thu, 17 Jan 2002 03:14:12 +0000 (+0000) Subject: reduce insect summoning X-Git-Tag: MOVE2GIT~3463 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=912b4a8d947dc74c7242845ec7954249ea52608d;p=nethack reduce insect summoning Testing the Astral Plane showed that the summon insects spell was a little ridiculous with the new monster spellcasting routines. You can easily have enough priests within range of you that insects are summoned almost every round. I've made this saner by halving the frequency of the spell. The player will still probably encounter summoned insects a lot more than before. --- diff --git a/src/mcastu.c b/src/mcastu.c index 4c4f0e9f0..1cc6a12b2 100644 --- a/src/mcastu.c +++ b/src/mcastu.c @@ -126,16 +126,15 @@ choose_clerical_spell(spellnum) int spellnum; { switch (spellnum) { - case 14: - return CLC_GEYSER; case 13: - return CLC_FIRE_PILLAR; + return CLC_GEYSER; case 12: - return CLC_LIGHTNING; + return CLC_FIRE_PILLAR; case 11: + return CLC_LIGHTNING; case 10: - return CLC_CURSE_ITEMS; case 9: + return CLC_CURSE_ITEMS; case 8: return CLC_INSECTS; case 7: