diff --git a/bot/config/config-example.ini b/bot/config/config-example.ini index 84e55ea..a57befd 100644 --- a/bot/config/config-example.ini +++ b/bot/config/config-example.ini @@ -1,3 +1,7 @@ +# Project is under GNU GENERAL PUBLIC LICENSE 3.0 +# +# 2022, created by Specoolazius + # These are the settings you need to configure. # Rename this file to "config.ini" # remove ; to modify further options diff --git a/bot/config/settings.ini b/bot/config/settings.ini index d042648..0d20ddc 100644 --- a/bot/config/settings.ini +++ b/bot/config/settings.ini @@ -1,3 +1,7 @@ +# Project is under GNU GENERAL PUBLIC LICENSE 3.0 +# +# 2022, created by Specoolazius + # You can change setting in here if you wish but it works # fine as it is configured by default # remove ; to modify options diff --git a/bot/extensions/__init__.py b/bot/extensions/__init__.py index 75f28ec..809eed4 100644 --- a/bot/extensions/__init__.py +++ b/bot/extensions/__init__.py @@ -1,3 +1,8 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" from .admin import Admin from .startstop import StartStop diff --git a/bot/extensions/admin.py b/bot/extensions/admin.py index 7596665..ac55018 100644 --- a/bot/extensions/admin.py +++ b/bot/extensions/admin.py @@ -1,3 +1,9 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" + import asyncio import os diff --git a/bot/extensions/startstop.py b/bot/extensions/startstop.py index 3c001d6..ca281d5 100644 --- a/bot/extensions/startstop.py +++ b/bot/extensions/startstop.py @@ -1,3 +1,9 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" + import discord from discord.commands import slash_command diff --git a/bot/libs/__init__.py b/bot/libs/__init__.py index bddc4ef..f562c0f 100644 --- a/bot/libs/__init__.py +++ b/bot/libs/__init__.py @@ -1,3 +1,9 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" + from .config import Configs from .presence import Presence from .client import Client diff --git a/bot/libs/client.py b/bot/libs/client.py index 07bac16..9a89eb3 100644 --- a/bot/libs/client.py +++ b/bot/libs/client.py @@ -1,3 +1,9 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" + from abc import ABC import asyncio from typing import Any diff --git a/bot/libs/config.py b/bot/libs/config.py index 3c618d6..bd33e0d 100644 --- a/bot/libs/config.py +++ b/bot/libs/config.py @@ -1,3 +1,9 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" + from datetime import datetime from configparser import ConfigParser import re diff --git a/bot/libs/presence.py b/bot/libs/presence.py index 25a7c7a..f637732 100644 --- a/bot/libs/presence.py +++ b/bot/libs/presence.py @@ -1,3 +1,9 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" + import asyncio import time diff --git a/bot/run.py b/bot/run.py index f03bc52..349ad60 100644 --- a/bot/run.py +++ b/bot/run.py @@ -1,3 +1,9 @@ +""" +Project is under GNU GENERAL PUBLIC LICENSE 3.0 + +2022, created by Specoolazius +""" + import sys from aiohttp import ClientConnectorError diff --git a/bot/run.sh b/bot/run.sh index e114715..346a036 100644 --- a/bot/run.sh +++ b/bot/run.sh @@ -1,4 +1,8 @@ #!/bin/bash +# Project is under GNU GENERAL PUBLIC LICENSE 3.0 +# +# 2022, created by Specoolazius + cd ~/mcserver-discordbot/bot || exit; sudo python3.10 -O run.py diff --git a/bot/scripts/update.sh b/bot/scripts/update.sh index 19e2188..20a4929 100644 --- a/bot/scripts/update.sh +++ b/bot/scripts/update.sh @@ -1,4 +1,9 @@ #!/bin/bash + +# Project is under GNU GENERAL PUBLIC LICENSE 3.0 +# +# 2022, created by Specoolazius + # Updates bot from https://github.com/Specoolazius/mcserver-discordbot git stash