changeset 347:edb230cce919 misc

Be more lax with crit detection.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 10 Aug 2016 00:33:41 +0300
parents 9b7e28e8e9ee
children 53bae7dd7abc
files magestats.pl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/magestats.pl	Wed Aug 10 00:31:52 2016 +0300
+++ b/magestats.pl	Wed Aug 10 00:33:41 2016 +0300
@@ -404,7 +404,7 @@
       $s =~ /^You feel like your spell gained additional (power)\./ ||
       $s =~ /^(Unseen) BURSTS of magic are absorbed into the spell/) {
       $crit_dist = $nline - $spell_active;
-      if ($spell_active > 0 && $crit_dist <= 5) {
+      if ($spell_active > 0 && $crit_dist <= 7) {
         $crit_type = $1;
         $crit_flag = 1;
       }