Skip to content

Commit ef914b6

Browse files
committed
Make "Set" live
Closes #1058
1 parent 74386f4 commit ef914b6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

config/data/holes.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3472,7 +3472,6 @@ preamble = '''
34723472
'''
34733473

34743474
[Set]
3475-
experiment = 1058
34763475
category = 'Gaming'
34773476
links = [
34783477
{ name = 'Rosetta Code', url = '//rosettacode.org/wiki/Set,_the_card_game' },

discord/bot.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ func init() {
6464
}
6565

6666
// TODO Make this dynamic based on hole/lang age.
67-
func channel(_ *config.Hole, _ *config.Lang) string {
67+
func channel(hole *config.Hole, _ *config.Lang) string {
68+
if hole.ID == "set" {
69+
return chanFreshID
70+
}
6871
return chanSourID
6972
}
7073

0 commit comments

Comments
 (0)