v instead of V in replace
This commit is contained in:
parent
7c8386d879
commit
edea18ee8c
@ -24,7 +24,7 @@ public class RumbleBot extends Bot {
|
||||
.replace('^', '*')
|
||||
.replace('<', '*')
|
||||
.replace('>', '*')
|
||||
.replace('V', '*');
|
||||
.replace('v', '*');
|
||||
char[][] grid = dataToGrid(data, size);
|
||||
|
||||
if (data.contains("*")) {
|
||||
|
@ -23,7 +23,7 @@ public class SnakeBot extends Bot {
|
||||
.replace('^', '*')
|
||||
.replace('<', '*')
|
||||
.replace('>', '*')
|
||||
.replace('V', '*');
|
||||
.replace('v', '*');
|
||||
char[][] grid = dataToGrid(data, view.width);
|
||||
|
||||
if (data.contains("@")) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user