diff --git a/redbot/_update/updater.py b/redbot/_update/updater.py index 4adb952b7..d6fb20749 100644 --- a/redbot/_update/updater.py +++ b/redbot/_update/updater.py @@ -312,7 +312,10 @@ class Updater: ) if self.options.red_version: - if self.options.red_version <= self.current_version: + if self.options.red_version < self.current_version or ( + not self.options.force_reinstall + and self.options.red_version == self.current_version + ): common.print_with_prefix_column( common.ICON_ERROR, "You can only update to a newer version of Red." )