diff --git a/src/sammo/Util.php b/src/sammo/Util.php index 6e55791a..a52571f4 100644 --- a/src/sammo/Util.php +++ b/src/sammo/Util.php @@ -782,7 +782,7 @@ class Util extends \utilphp\util else{ while($from > $to){ yield $from; - $from -= $step; + $from += $step; } } }