From 69aca5ac963a0008c3b5e6d726eecb48128c9c7e Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 11 Jun 2016 21:33:08 +0300 Subject: [PATCH] Reduce #turn undead helpless duration --- src/pray.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;