diff --git a/.idea/misc.xml b/.idea/misc.xml index 0be1bd5..fb40be9 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/src/ManualBot.java b/src/ManualBot.java index 0ea91b8..9a82557 100644 --- a/src/ManualBot.java +++ b/src/ManualBot.java @@ -11,12 +11,12 @@ public class ManualBot extends Bot{ protected char nextMove(View view) throws Exception{ Scanner scanner = new Scanner(System.in); - switch(scanner.nextLine()){ + switch(scanner.nextLine().toLowerCase()){ case "w": return '^' ; case "s": - return 'V' ; + return 'v' ; case "a": return '<' ; case "d":