-
-
Notifications
You must be signed in to change notification settings - Fork 421
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
Showing
119 changed files
with
2,000 additions
and
1,039 deletions.
There are no files selected for viewing
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,3 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
ko_fi: wurst | ||
custom: https://www.wurstclient.net/donate/?utm_source=GitHub&utm_medium=Wurst7&utm_campaign=GitHub+Sponsors&utm_content=Sponsor+this+project |
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,66 @@ | ||
name: Bug Report | ||
description: Report a bug | ||
labels: ["type:bug", "status:unconfirmed"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Welcome! | ||
Please fill out the following template to help us understand and reproduce the issue you're experiencing. | ||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: Pre-reporting checklist | ||
description: "Please select all that apply." | ||
options: | ||
- label: "I have searched existing issues and didn't find any previous reports of this bug." | ||
- label: "This bug still happens in the latest version of Wurst. I've made sure my installation is up to date." | ||
- label: "I have tried removing all other mods and the bug still happens." | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: "Please describe the bug in as much detail as possible." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Repro steps | ||
description: "How do you trigger this bug? Please walk us through it step by step." | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
validations: | ||
required: true | ||
- type: input | ||
id: wurst-version | ||
attributes: | ||
label: Wurst Client version | ||
placeholder: e.g. 7.15 | ||
validations: | ||
required: true | ||
- type: input | ||
id: minecraft-version | ||
attributes: | ||
label: Minecraft version | ||
placeholder: e.g. 1.16.5 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: crash | ||
attributes: | ||
label: Crash report (if applicable) | ||
description: "If your game crashed, please paste the entire crash report here." | ||
placeholder: | | ||
---- Minecraft Crash Report ---- | ||
// Who set us up the TNT? | ||
render: plaintext | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Thank you! | ||
We appreciate your help in improving Wurst Client by reporting this bug. Please make sure you have filled out all the necessary information before submitting this 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,62 @@ | ||
name: Suggestion | ||
description: "Suggest a change to improve the Wurst Client" | ||
labels: ["type:enhancement", "status:unconfirmed"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Welcome! | ||
Please fill out the following template to help us understand the improvement you're suggesting. | ||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: Pre-suggestion checklist | ||
description: "Please select all that apply." | ||
options: | ||
- label: "I have searched existing issues and didn't find any previous issues with the same suggestion." | ||
- label: "This is only one suggestion. I understand that GitHub issues don't work well with lists." | ||
- label: "This feature doesn't already exist in the latest version of Wurst. I've made sure my installation is up to date." | ||
- label: "I have looked at the code and am reasonably confident that this suggestion is possible to implement." | ||
- type: dropdown | ||
id: type | ||
attributes: | ||
label: What type of improvement are you suggesting? | ||
multiple: true | ||
options: | ||
- "Adding a new hack." | ||
- "Adding a new chat command." | ||
- "Adding a different kind of feature." | ||
- "Changing the settings of existing features." | ||
- "Porting existing features to a different Minecraft version." | ||
- "Turning a Wurst feature into a standalone mod." | ||
- "Removing an old feature that doesn't work anymore." | ||
- "Other (please explain in description)" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: target-audience | ||
attributes: | ||
label: What type of player would find this improvement useful? | ||
multiple: true | ||
options: | ||
- "Builders" | ||
- "Miners" | ||
- "Griefers" | ||
- "PVPers" | ||
- "Redstoners" | ||
- "Anarchy/faction players" | ||
- "Other (please explain in description)" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: "Please describe the improvement in as much detail as possible. What does it do and how is it useful? Assume that we have never heard of it before, even if it exists in other hacked clients." | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Thank you! | ||
We appreciate your help in improving Wurst Client by suggesting this improvement. Please make sure you have filled out all the necessary information before submitting this issue. |
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,7 +1,7 @@ | ||
<!--NOTE: If you are contributing multiple unrelated features, please create a separate pull request for each feature. Squeezing everything into one giant pull request makes it very difficult for me to add your features, as I have to test, validate and add them one by one. Thank you for your understanding - and thanks again for taking the time to contribute!!--> | ||
|
||
## Description | ||
What have you added and what does it do? (Alternatively, what have you fixed and how does it work?) | ||
> What have you added and what does it do? (Alternatively, what have you fixed and how does it work?) | ||
## (Optional) screenshots / videos | ||
If applicable, add screenshots or videos to help explain your pull request. | ||
> If applicable, add screenshots or videos to help explain your pull request. |
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 |
---|---|---|
|
@@ -40,3 +40,4 @@ jobs: | |
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }} | ||
files: | | ||
./build/libs/*.jar | ||
continue-on-error: true |
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
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
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
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
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 |
---|---|---|
|
@@ -151,4 +151,10 @@ else if(posVec.y < nextBox.minY) | |
} | ||
} | ||
} | ||
|
||
@Override | ||
public boolean canBreakBlocks() | ||
{ | ||
return true; | ||
} | ||
} |
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
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
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
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
Oops, something went wrong.