We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b24d09f commit c9e9570Copy full SHA for c9e9570
1 file changed
module/eventstory/eventstory.py
@@ -201,6 +201,14 @@ def get_event_story_state(self):
201
return 'unknown'
202
203
def run(self):
204
+ event = self.config.cross_get('Event.Campaign.Event', '')
205
+ if event in [
206
+ # event story is in event minigame
207
+ 'event_20260226_cn',
208
+ ]:
209
+ logger.info(f'Current event ({event}) does not have event story, stopped')
210
+ return
211
+
212
if not self.device.app_is_running():
213
logger.warning('Game is not running, start it')
214
self.app_start()
0 commit comments