# HG changeset patch # User Matti Hamalainen # Date 1470778421 -10800 # Node ID edb230cce91985107211fea32febcbe76281dfbf # Parent 9b7e28e8e9eec213d39479f1724ce6f68c5c89c6 Be more lax with crit detection. diff -r 9b7e28e8e9ee -r edb230cce919 magestats.pl --- 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; }