瀏覽代碼

Complete pattern match to prevent errors

Thomas Dy 11 年之前
父節點
當前提交
c39d5f5ea3
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      app/models/Taboo.scala

+ 2 - 0
app/models/Taboo.scala

@@ -136,11 +136,13 @@ class TabooGame(val chatActor: ActorRef) extends Actor {
         else if(round.monitors(username)) text match {
           case "/taboo" | "/t" => roundActor ! Taboo(username)
           case "/correct" | "/c" => roundActor ! Correct(username)
+          case _ => Unit
         }
 
       case None =>
         if(username == currentTeam.player) text match {
           case "/start" | "/s" => self ! StartRound
+          case _ => Unit
         }
     }