diff --git a/sizebot/lib/proportions.py b/sizebot/lib/proportions.py index 85a964f1..b5fbca52 100644 --- a/sizebot/lib/proportions.py +++ b/sizebot/lib/proportions.py @@ -164,7 +164,7 @@ def load(cls, playerStats: PlayerStats) -> StatBox: processed.append(sv) # If no progress if len(queued) == len(processing): - raise errors.UnfoundStatException([s.name for s in queued]) + raise errors.UnfoundStatException(["Load"], [s.name for s in queued]) return cls(processed) def scale(self, scale_value: Decimal) -> StatBox: @@ -186,7 +186,7 @@ def scale(self, scale_value: Decimal) -> StatBox: processed.append(sv) # If no progress if len(queued) == len(processing): - raise errors.UnfoundStatException([s.stat.name for s in queued]) + raise errors.UnfoundStatException(["Scale"], [s.stat.name for s in queued]) return StatBox(processed) def get(self, stat_name: str) -> StatValue | None: