diff --git a/SpiceBot/SpiceBotCore/botsetup/__init__.py b/SpiceBot/SpiceBotEvents/__init__.py similarity index 100% rename from SpiceBot/SpiceBotCore/botsetup/__init__.py rename to SpiceBot/SpiceBotEvents/__init__.py diff --git a/SpiceBot/SpiceBotCore/botsetup/events.py b/SpiceBot/SpiceBotEvents/events.py similarity index 98% rename from SpiceBot/SpiceBotCore/botsetup/events.py rename to SpiceBot/SpiceBotEvents/events.py index 3b6be3c..246b4ca 100644 --- a/SpiceBot/SpiceBotCore/botsetup/events.py +++ b/SpiceBot/SpiceBotEvents/events.py @@ -6,7 +6,7 @@ This is the SpiceBot Events system. from threading import Thread from sopel import plugin -from SpiceBot import sb +from SpiceBot.SpiceBotCore import sb @plugin.event(sb.events.BOT_WELCOME, sb.events.BOT_READY, sb.events.BOT_CONNECTED, sb.events.BOT_LOADED) diff --git a/SpiceBot/SpiceBotCore/botsetup/welcome_setup.py b/SpiceBot/SpiceBotEvents/welcome_setup.py similarity index 92% rename from SpiceBot/SpiceBotCore/botsetup/welcome_setup.py rename to SpiceBot/SpiceBotEvents/welcome_setup.py index 6cb68c6..7fb0573 100644 --- a/SpiceBot/SpiceBotCore/botsetup/welcome_setup.py +++ b/SpiceBot/SpiceBotEvents/welcome_setup.py @@ -5,7 +5,7 @@ This is the SpiceBot Events system. """ from sopel import plugin -from SpiceBot import sb +from SpiceBot.SpiceBotCore import sb @plugin.event("001")