Stupid mistake when renaming functions. Fixed.

This commit is contained in:
Elf M. Sternberg 2013-12-04 00:33:44 -08:00
parent 17c8a86bb8
commit eb2184258f
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ coors = [0..4]
state = "lost"
snum = (n) -> if n < 10 then " #{n}" else "#{n}"
fnum = (j) -> if j.found then "[#{fnum(j.n)}]" else " #{fnum(j.n)} "
fnum = (j) -> if j.found then "[#{snum(j.n)}]" else " #{snum(j.n)} "
socket = io.connect "ws://yahoobingo.herokuapp.com"
socket.on "connect", ->