fixed error. command stop sending as forward

This commit is contained in:
MaximZaitsev
2016-07-20 14:14:29 +03:00
parent 4f36e58dd1
commit daf930b16d
+1 -1
View File
@@ -14,7 +14,7 @@ val correctDirectionMap = mapOf<Char, Command>(
Pair('s', Command.backward),
Pair('a', Command.left),
Pair('d', Command.right),
Pair('w', Command.stop))
Pair('h', Command.stop))
fun main(args: Array<String>) {
val jsap: JSAP = JSAP()