Skip to content

Commit fcf2c4a

Browse files
committed
Release "Tic-tac-toe"
Closes #1031
1 parent 65b94ea commit fcf2c4a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

config/data/holes.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4012,7 +4012,6 @@ preamble = '''
40124012
'''
40134013

40144014
[Tic-tac-toe]
4015-
experiment = 1031
40164015
category = 'Gaming'
40174016
links = [
40184017
{ name = 'Rosetta Code', url = '//rosettacode.org/wiki/Tic-tac-toe' },

discord/bot.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ func init() {
6464
}
6565

6666
// TODO Make this dynamic based on hole/lang age.
67-
func channel(_ *config.Hole, lang *config.Lang) string {
68-
if lang.ID == "gleam" {
67+
func channel(hole *config.Hole, lang *config.Lang) string {
68+
if hole.ID == "tic-tac-toe" || lang.ID == "gleam" {
6969
return chanFreshID
7070
}
7171
return chanSourID

0 commit comments

Comments
 (0)