diff --git a/overwatch.py b/overwatch.py index 5c082d4d..2ef9846c 100644 --- a/overwatch.py +++ b/overwatch.py @@ -74,7 +74,7 @@ def url_to_medal(rank: str): raise NotFoundException("The medal does not exist.") def format_rankchange(rankchange: int): - if rankchange < 0: + if rankchange > 0: return "+" + str(rankchange) else: return str(rankchange) \ No newline at end of file