Skip to content

Commit

Permalink
map-testing/auto_archive: Continue if MapState == RC
Browse files Browse the repository at this point in the history
  • Loading branch information
murpii authored Feb 26, 2024
1 parent 36cbc3b commit 08af8b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/map_testing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ async def auto_archive(self):
to_archive = []
for map_channel in self.map_channels:
# keep the channel until its map is released, including a short grace period
if map_channel.state in (MapState.TESTING, MapState.READY) or map_channel in recent_releases:
if map_channel.state in (MapState.TESTING, MapState.RC, MapState.READY) or map_channel in recent_releases:
continue

# don't tele waiting maps before 60 days have passed
Expand Down

0 comments on commit 08af8b8

Please sign in to comment.