1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-17 11:19:29 +08:00

Adj: remove the minimum oil limit of coalition

This commit is contained in:
0O0o0oOoO00
2025-07-09 18:28:57 +08:00
parent 81359c242e
commit fe63274fe7

View File

@@ -63,7 +63,7 @@ class Coalition(CoalitionCombat, CampaignEvent):
return True
# Oil limit
if oil_check:
if self.get_oil() < max(500, self.config.StopCondition_OilLimit):
if self.get_oil() < self.config.StopCondition_OilLimit:
logger.hr('Triggered stop condition: Oil limit')
self.config.task_delay(minute=(120, 240))
return True