]> granicus.if.org Git - nethack/commitdiff
Reduce #turn undead helpless duration
authorPasi Kallinen <paxed@alt.org>
Sat, 11 Jun 2016 18:33:08 +0000 (21:33 +0300)
committerPasi Kallinen <paxed@alt.org>
Sat, 11 Jun 2016 18:33:12 +0000 (21:33 +0300)
src/pray.c

index 7982040ee431b061da84f79264d43ba39fd7a435..f9fe72083ec9f72ddd399346cbc655edad295a2b 100644 (file)
@@ -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;