mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-23 17:11:42 +00:00
ad73de92dd
- 删除了一些无用的assets - 纠正了一些拼写错误
10 lines
249 B
Python
10 lines
249 B
Python
from module.handler.popup import PopupHandler
|
|
|
|
|
|
class LowEmotionHandler(PopupHandler):
|
|
def handle_combat_low_emotion(self):
|
|
if not self.config.IGNORE_LOW_EMOTION_WARN:
|
|
return False
|
|
|
|
return self.handle_popup_confirm()
|