diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-05-06 11:36:50 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-05-06 11:36:50 +0000 |
commit | 7f15747e7689b9bc58105cc909f0d8b95081fbd9 (patch) | |
tree | f9ed35eb826722ffca8cf525b2c51123672ff162 /main.py | |
parent | 14fd81118a30dea394eca940cefb6dda86b66933 (diff) | |
download | steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.gz steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.bz2 steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.lz steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.xz steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.zst steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.zip |
hiding my tracks :eyes:
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ import logging from colorama import init as init_colorama -from bot import CelesteBot +from bot import BedrockBot def setup_logging(): @@ -25,7 +25,7 @@ def setup_logging(): def run_bot(): - bot = CelesteBot() + bot = BedrockBot() bot.run() if __name__ == "__main__": |