no need to send possible moves to watchers

This commit is contained in:
Thibault Duplessis 2013-05-30 12:05:32 +02:00
parent a2b8487656
commit e44e142bc5
2 changed files with 2 additions and 1 deletions

View file

@ -12,7 +12,7 @@ moreJs: Html = Html(""))(body: Html)(implicit ctx: Context)
<!doctype html>
<html lang="@lang.language">
<head>
<title>@isProd.fold("lichess", "[dev]")@title • @trans.freeOnlineChess()</title>
<title>@isProd.fold("lichess", "[dev]") @title • @trans.freeOnlineChess()</title>
@cssTag("dark.css")
@cssTag("vendor.css")
@cssTag("common.css")

View file

@ -68,6 +68,7 @@ object Event {
case (o, d) o.key -> JsString(d map (_.key) mkString)
} toList)
override def only = Some(color)
override def owner = true
}
case class Enpassant(killed: Pos) extends Event {