Black21Jack!

This commit is contained in:
SpudGunMan
2024-09-19 15:48:10 -07:00
parent 2c3cce4d51
commit 71c8c98ce9
5 changed files with 512 additions and 4 deletions
+14
View File
@@ -88,11 +88,25 @@ if lemonade_enabled:
from modules.lemonade import * # from the spudgunman/meshing-around repo
trap_list = trap_list + ("lemonstand",)
games_enabled = True
# BlackJack Configuration
if blackjack_enabled:
from modules.blackjack import * # from the spudgunman/meshing-around repo
trap_list = trap_list + ("blackjack",)
games_enabled = True
# Games Configuration
if games_enabled is True:
help_message = help_message + ", games"
trap_list = trap_list + ("games",)
gamesCmdList = "CMD: "
if dopewars_enabled:
gamesCmdList += "DopeWars, "
if lemonade_enabled:
gamesCmdList += "LemonStand, "
if blackjack_enabled:
gamesCmdList += "BlackJack, "
gamesCmdList = gamesCmdList[:-2] # remove the last comma
# Scheduled Broadcast Configuration
if scheduler_enabled: