diff --git a/hwe/sammo/General.php b/hwe/sammo/General.php index 627d8d9a..9194fd52 100644 --- a/hwe/sammo/General.php +++ b/hwe/sammo/General.php @@ -365,14 +365,14 @@ class General extends GeneralBase implements iAction } } - $this->calcCache[$cKey] = $statValue; - $statValue = Util::clamp($statValue, 0, GameConst::$maxLevel); if ($useFloor) { return Util::toInt($statValue); } + $this->calcCache[$cKey] = $statValue; + return $statValue; }