echo command will just echo, off by default its handy for things like making a demo or node speak
This commit is contained in:
SpudGunMan
2025-09-28 15:04:56 -07:00
parent 4b2402c286
commit f9ab6a79d3
5 changed files with 36 additions and 0 deletions
+6
View File
@@ -26,6 +26,12 @@ if ping_enabled:
trap_list = trap_list + trap_list_ping
help_message = help_message + "ping"
# Echo Configuration
if enableEcho:
trap_list_echo = ("echo",)
trap_list = trap_list + trap_list_echo
help_message = help_message + ", echo"
# Sitrep Configuration
if sitrep_enabled:
trap_list_sitrep = ("sitrep", "lheard", "sysinfo")