mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-15 07:29:26 +08:00
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()
|