Skip to content

Commit

Permalink
pre-v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbrq committed Aug 25, 2024
1 parent 29f2686 commit 6cb806d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion worlds/gl/GauntletLegendsClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,10 @@ async def scout_locations(self, ctx: "GauntletLegendsContext") -> None:
self.current_level = level
players = await self.active_players()
player_level = await self.player_level()
self.difficulty = min(players + (min(player_level // vanilla[level[1]], 3)), 4)
if self.clear_counts.get(str(level), 0) != 0:
self.difficulty = min(players + (min(player_level // vanilla[level[1]], 3)), 4)
else:
self.difficulty = players
_id = level[0]
if level[1] == 1:
_id = castle_id.index(level[0]) + 1
Expand Down

0 comments on commit 6cb806d

Please sign in to comment.