diff --git a/config/deployment.yml b/config/deployment.yml index 5693573..145b41d 100644 --- a/config/deployment.yml +++ b/config/deployment.yml @@ -31,8 +31,8 @@ spec: name: cavbotenv key: api_key - name: DISCORD_ID - value: 109869242148491264 + value: "109869242148491264" - name: OWNER_ID - value: 130158049968128000 + value: "130158049968128000" imagePullSecrets: - name: s6containers diff --git a/main.py b/main.py index 4c14584..e833d1d 100644 --- a/main.py +++ b/main.py @@ -26,7 +26,7 @@ # Set the bot's status activity status = discord.Activity(name="https://7cav.us", type=3) -discord_id = os.getenv("DISCORD_ID") +discord_id = int(os.getenv("DISCORD_ID")) owner_id = int(os.getenv("OWNER_ID"))