From: Pasi Kallinen Date: Sat, 11 Jun 2016 18:33:08 +0000 (+0300) Subject: Reduce #turn undead helpless duration X-Git-Tag: NetHack-3.6.1_RC01~683 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69aca5ac963a0008c3b5e6d726eecb48128c9c7e;p=nethack Reduce #turn undead helpless duration --- diff --git a/src/pray.c b/src/pray.c index 7982040ee..f9fe72083 100644 --- a/src/pray.c +++ b/src/pray.c @@ -1973,7 +1973,7 @@ doturn() } } } - nomul(-5); + nomul(-(5 - ((u.ulevel - 1) / 6))); /* -5 .. -1 */ multi_reason = "trying to turn the monsters"; nomovemsg = You_can_move_again; return 1;