a game of the FCC/ARRL Question Pools
This commit is contained in:
SpudGunMan
2025-02-23 18:40:41 -08:00
parent a7a710208a
commit 32deea9e3b
9 changed files with 17476 additions and 1 deletions
+7
View File
@@ -157,6 +157,11 @@ if hangman_enabled:
trap_list = trap_list + ("hangman",)
games_enabled = True
if hamtest_enabled:
from modules.games.hamtest import * # from the spudgunman/meshing-around repo
trap_list = trap_list + ("hamtest",)
games_enabled = True
# Games Configuration
if games_enabled is True:
help_message = help_message + ", games"
@@ -179,6 +184,8 @@ if games_enabled is True:
gamesCmdList += "golfSim, "
if hangman_enabled:
gamesCmdList += "hangman, "
if hamtest_enabled:
gamesCmdList += "hamTest, "
gamesCmdList = gamesCmdList[:-2] # remove the last comma
else:
gamesCmdList = ""