testing123

This commit is contained in:
SpudGunMan
2024-07-10 17:17:37 -07:00
parent c9c1990ea1
commit 1fead99b9c
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ def auto_response(message, snr, rssi, hop, message_from_id):
bot_response = "🏓ACK-ACK! " + f"SNR:{snr} RSSI:{rssi}"
else:
bot_response = "🏓ACK-ACK! " + hop
elif "testing" in message.lower():
elif "testing" in message.lower() or "test" in message.lower():
bot_response = "🏓Testing 1,2,3"
elif "pong" in message.lower():
bot_response = "🏓PING!!"

View File

@@ -49,7 +49,7 @@ def auto_response(message, snr, rssi, hop, message_from_id):
bot_response = "🏓ACK-ACK! " + f"SNR:{snr} RSSI:{rssi}"
else:
bot_response = "🏓ACK-ACK! " + hop
elif "testing" in message.lower():
elif "testing" in message.lower() or "test" in message.lower():
bot_response = "🏓Testing 1,2,3"
elif "pong" in message.lower():
bot_response = "🏓Ping!!"