Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: I found a bug!
description: "Report some other kind of issue."
labels: [ "type: bug" ]
body:
- type: textarea
attributes:
label: Description
description: >
Please describe the issue with as much detail as possible.
Explain what happened, and what should have happened instead.
Add images, screenshots, or videos if they could be useful.
validations:
required: true

- type: input
attributes:
label: Game Log
description: >
We need the game log for additional information about the bug.
This file can be found in the `logs` folder of your Minecraft folder as `debug.log`.
Please upload the file to https://mclo.gs/ and put the link here.
Do **not** paste the *contents* of the file here, because that will make this issue very hard to read.
validations:
required: true

- type: textarea
attributes:
label: Debug Information
description: >
Please run the `/flywheel debug info` command in-game.
This will allow you to copy useful information to your clipboard that will greatly help with debugging.
Please paste this information here.
validations:
required: true

- type: markdown
attributes:
value: "Thank you for taking the time to make a report and help improve Flywheel!"
127 changes: 0 additions & 127 deletions .github/ISSUE_TEMPLATE/bug_report.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
contact_links:
- name: Discord Server
url: https://discord.gg/ambsHEyaAD
about: Join us on Discord.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/crash.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: My game crashed!
description: Report an issue that crashes the game.
labels: [ "type: crash" ]
body:
- type: textarea
attributes:
label: Context
description: What were you doing when the game crashed? Add images, screenshots, or videos if they could be useful.
validations:
required: true

- type: input
attributes:
label: Crash Report
description: >
We need the crash report to figure out why the crash happened.
This file can be found in the \"crash-reports\" folder of your Minecraft folder.
It will be the newest file there.
Please upload the file to https://mclo.gs/ and put the link here.
Do **not** paste the *contents* of the file here, because that will make this issue very hard to read.
validations:
required: true

- type: markdown
attributes:
value: "Thank you for taking the time to make a report and help improve Flywheel!"
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static Component getDebugCommandInfo() {
addVisualizationManagerDebugInfo(manager, out);

// Write out to a string both to emit to chat and include in the click event.
var debugInfoString = out.toString();
String debugInfoString = out.toString();

return Component.literal(debugInfoString)
.append(Component.literal("\n\nClick to copy debug info to clipboard")
Expand All @@ -61,8 +61,8 @@ public static Component getDebugCommandInfo() {
.append(Component.literal("\n\nClick to open an issue on GitHub")
.withStyle(Style.EMPTY.withUnderlined(true)
.withColor(ChatFormatting.BLUE)
.withClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, "https://github.com/Engine-Room/Flywheel/issues"))
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("Opens URL:\nhttps://github.com/Engine-Room/Flywheel/issues")))));
.withClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, "https://github.com/Engine-Room/Flywheel/issues/new"))
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("Opens URL:\nhttps://github.com/Engine-Room/Flywheel/issues/new")))));

}

Expand Down
Loading