Opt: Disable WeeklyFarming on cloud game

This commit is contained in:
LmeSzinc 2024-06-03 21:28:03 +08:00
parent ed193e0767
commit 9fd1d76392

View File

@ -377,6 +377,9 @@ class RogueEntry(RouteBase, RogueRewardHandler, RoguePathHandler, DungeonUI):
'Reached weekly point limit but still continue to farm materials')
logger.attr(
"Farming Counter", self.config.stored.SimulatedUniverseFarm.to_counter())
if self.config.is_cloud_game and not self.config.stored.CloudRemainSeasonPass:
logger.warning('Running WeeklyFarming on cloud game without season pass may cause fee, skip')
raise RogueReachedWeeklyPointLimit
else:
raise RogueReachedWeeklyPointLimit
else: