Update falcon.py
Browse files
falcon.py
CHANGED
|
@@ -28,7 +28,7 @@ async def try_falcon(interaction, prompt):
|
|
| 28 |
if interaction.user.id != BOT_USER_ID:
|
| 29 |
if interaction.channel.id == FALCON_CHANNEL_ID:
|
| 30 |
|
| 31 |
-
if os.environ.get('TEST_ENV')
|
| 32 |
print("TEST_ENV is True.")
|
| 33 |
await interaction.response.send_message(f"Working on it!")
|
| 34 |
channel = interaction.channel
|
|
|
|
| 28 |
if interaction.user.id != BOT_USER_ID:
|
| 29 |
if interaction.channel.id == FALCON_CHANNEL_ID:
|
| 30 |
|
| 31 |
+
if os.environ.get('TEST_ENV') == 'True':
|
| 32 |
print("TEST_ENV is True.")
|
| 33 |
await interaction.response.send_message(f"Working on it!")
|
| 34 |
channel = interaction.channel
|