Skip to content

Commit

Permalink
remove spaces from settings keys
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Nov 26, 2021
1 parent ea256b8 commit 87ef26b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/Env.scala
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,18 @@ final class Env(
text = "Team IDs that always get their tournaments visible on /tournament. Separated by commas.".some
)
lazy val prizeTournamentMakers = memo.settingStore[UserIds](
"prizeTournamentMakers ",
"prizeTournamentMakers",
default = UserIds(Nil),
text =
"User IDs who can make prize tournaments (arena & swiss) without a warning. Separated by commas.".some
)
lazy val apiExplorerGamesPerSecond = memo.settingStore[Int](
"apiExplorerGamesPerSecond ",
default = 200,
"apiExplorerGamesPerSecond",
default = 300,
text = "Opening explorer games per second".some
)
lazy val pieceImageExternal = memo.settingStore[Boolean](
"pieceImageExternal ",
"pieceImageExternal",
default = false,
text = "Use external piece images".some
)
Expand Down

0 comments on commit 87ef26b

Please sign in to comment.