fix bug causing point click to reset jam timer

This commit is contained in:
Neale Pickett 2011-11-20 22:45:54 -07:00
parent 35e43432da
commit 1bfbd23145
1 changed files with 2 additions and 2 deletions

View File

@ -289,11 +289,11 @@ function handle(event) {
case "name-b": case "name-b":
case "logo-b": case "logo-b":
score(team, -1); score(team, -1);
break; return;
case "score-a": case "score-a":
case "score-b": case "score-b":
score(team, 1); score(team, 1);
break; return;
} }
transition(); transition();
} }