You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
356 B

extends AcceptDialog
func show_if_should():
for provider in App.get_providers():
if provider is MajorityJudgmentTwitchChatProvider:
var config = provider.get_oauth_config()
if (
(not "channel" in config)
or
(not config["channel"])
):
popup_centered()
func _on_NoTwitchSettingsPopup_confirmed():
App.go_to_twitch_settings()