From 81359c242e4dd7d07a9719f6c09ec27574a533af Mon Sep 17 00:00:00 2001 From: 0O0o0oOoO00 <11174151+0O0o0oOoO00@users.noreply.github.com> Date: Wed, 9 Jul 2025 17:56:25 +0800 Subject: [PATCH] Adj: remove the minimum oil limit of event hospital --- module/event_hospital/combat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/event_hospital/combat.py b/module/event_hospital/combat.py index 90452f564..f250cb955 100644 --- a/module/event_hospital/combat.py +++ b/module/event_hospital/combat.py @@ -54,7 +54,7 @@ class HospitalCombat(Combat, HospitalUI, CampaignEvent): @run_once def check_oil(): - if self.get_oil() < max(500, self.config.StopCondition_OilLimit): + if self.get_oil() < self.config.StopCondition_OilLimit: logger.hr('Triggered oil limit') raise OilExhausted