-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e18d4d3
commit a177e82
Showing
8 changed files
with
128 additions
and
65 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
title: "[Bug]: " | ||
labels: [ "bug", "unconfirmed" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Please make sure to add all required information. | ||
- type: dropdown | ||
id: minecraft-version | ||
attributes: | ||
label: Minecraft Version | ||
options: | ||
- 1.16.x | ||
- 1.18.x | ||
validations: | ||
required: true | ||
- type: input | ||
id: forge-version | ||
attributes: | ||
label: Forge Version | ||
placeholder: 36.2.2 | ||
validations: | ||
required: true | ||
- type: input | ||
id: vampirism-version | ||
attributes: | ||
label: Vampirism Version | ||
placeholder: 1.8.3 | ||
validations: | ||
required: false | ||
- type: input | ||
id: werewolves-version | ||
attributes: | ||
label: Werewolves Version | ||
placeholder: 0.6.1 | ||
validations: | ||
required: true | ||
- type: input | ||
id: modpack | ||
attributes: | ||
label: Modpack | ||
description: If running a public modpack, please link it here | ||
- type: dropdown | ||
id: side | ||
attributes: | ||
label: Singleplayer/Multiplayer | ||
description: If this happened in singleplayer or on a server | ||
options: | ||
- Singleplayer | ||
- Server | ||
- Both | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What happened? | ||
description: Please describe what happened or what you expected instead | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. If your game crashes, this must be a crash-report | ||
placeholder: | | ||
If crashed either crash-xxx-server.txt or crash-xxx-client.txt | ||
Otherwise logs/debug.log | ||
render: bash | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: Reproduce steps | ||
description: Please describe how to reproduce your issue | ||
placeholder: | | ||
1. Load singleplayer world | ||
2. Become werewolf level 5 | ||
3. Do x | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: other-version | ||
attributes: | ||
label: Other relevant mods | ||
description: List any other interesting mods and their version here | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Vampirism/Werewolves Discord | ||
url: https://discord.gg/wuamm4P | ||
about: If you are not sure about something, ask on Discord | ||
- name: Github Discussions | ||
url: https://github.com/TeamLapen/Werewolves/discussions | ||
about: Another way if you are unsure about creating an issue |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Feature request | ||
description: Suggest an idea for this mod | ||
title: "[Feature]: " | ||
labels: [ "enhancement" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please describe your suggestions as specific as possible. This increases the chance this will be considered. | ||
This may include suggesting crafting recipes, item names or places in skill tree if applicable. | ||
- type: textarea | ||
id: what | ||
attributes: | ||
label: What? | ||
description: What would you like to have changed or added to Vampirism | ||
placeholder: Tell us what you want to see! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: balanced | ||
attributes: | ||
label: Mod experience | ||
description: Does this affect the mod balance in a positive or negative way? | ||
- type: textarea | ||
id: help | ||
attributes: | ||
label: Contributions | ||
description: Can you provide additional resources? | ||
placeholder: Textures, models, etc. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
.github/workflows/gradle.yml → .github/workflows/gradle-build.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Java Build | ||
name: Build | ||
|
||
on: | ||
push: | ||
|