mirror of
https://github.com/prosolis/gogobee.git
synced 2026-07-16 00:52:40 +00:00
Add bot defeat tracking, audit fixes, and README UNO section
Add !twinbeeboard command (GogoBee's trophy wall) with unified bot_defeats table tracking losses across Blackjack, UNO solo, and UNO multiplayer. Fix No Mercy audit bugs: wild card color choice routing, bot Color Roulette double-advance, missing DM notifications for roulette victims and 7-0 swap targets, autoplay Color Roulette effect. Remove dead code. Update README with full UNO documentation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -723,6 +723,14 @@ CREATE TABLE IF NOT EXISTS uno_multi_games (
|
||||
ended_at DATETIME NOT NULL
|
||||
);
|
||||
|
||||
-- Bot defeat tracking (unified across all games)
|
||||
CREATE TABLE IF NOT EXISTS bot_defeats (
|
||||
user_id TEXT NOT NULL,
|
||||
game TEXT NOT NULL,
|
||||
losses INTEGER NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (user_id, game)
|
||||
);
|
||||
|
||||
-- Space groups (rooms with overlapping membership)
|
||||
CREATE TABLE IF NOT EXISTS space_groups (
|
||||
room_id TEXT PRIMARY KEY,
|
||||
|
||||
Reference in New Issue
Block a user