File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
cli/src/main/java/org/mcphackers/mcp/main Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ A clear and concise description of what you expected to happen.
1717If applicable, add screenshots to help explain your problem.
1818
1919** RetroMCP Version**
20- v1.1
20+ v1.2
2121
2222** Minecraft version**
2323
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ A clear and concise description on how RetroMCP-Java currently deals with it.
1717If applicable, add screenshots to help explain your problem.
1818
1919** RetroMCP Version**
20- v1.1
20+ v1.2
2121
2222** Additional context**
2323Add any other context about the problem here.
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ public void error(String msg) {
306306 public boolean yesNoInput (String title , String msg ) {
307307 log (msg );
308308 String line = consoleInput .nextLine ();
309- return line != null && line .equalsIgnoreCase ("yes" );
309+ return line != null && ( line .equalsIgnoreCase ("yes" ) || line . toLowerCase (). startsWith ( "y" ) );
310310 }
311311
312312 @ Override
You can’t perform that action at this time.
0 commit comments