Skip to content

Commit ae0c03f

Browse files
committed
chore: Update issue templates
1 parent ec16b2a commit ae0c03f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A clear and concise description of what you expected to happen.
1717
If applicable, add screenshots to help explain your problem.
1818

1919
**RetroMCP Version**
20-
v1.1
20+
v1.2
2121

2222
**Minecraft version**
2323

.github/ISSUE_TEMPLATE/enhancement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A clear and concise description on how RetroMCP-Java currently deals with it.
1717
If applicable, add screenshots to help explain your problem.
1818

1919
**RetroMCP Version**
20-
v1.1
20+
v1.2
2121

2222
**Additional context**
2323
Add any other context about the problem here.

cli/src/main/java/org/mcphackers/mcp/main/MainCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)