forked from MeteorDevelopment/meteor-client
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into master-ame
# Conflicts: # README.md # build.gradle # gradle.properties # gradle/wrapper/gradle-wrapper.jar # gradle/wrapper/gradle-wrapper.properties # gradlew # gradlew.bat # src/main/java/meteordevelopment/meteorclient/MeteorClient.java # src/main/java/meteordevelopment/meteorclient/mixin/ChatInputSuggestorMixin.java # src/main/java/meteordevelopment/meteorclient/mixin/ChatScreenMixin.java # src/main/java/meteordevelopment/meteorclient/mixin/TitleScreenMixin.java # src/main/java/meteordevelopment/meteorclient/systems/commands/Commands.java # src/main/java/meteordevelopment/meteorclient/systems/commands/commands/NameHistoryCommand.java # src/main/java/meteordevelopment/meteorclient/systems/config/Config.java # src/main/java/meteordevelopment/meteorclient/systems/modules/combat/KillAura.java # src/main/java/meteordevelopment/meteorclient/systems/modules/misc/DiscordPresence.java # src/main/java/meteordevelopment/meteorclient/systems/modules/player/AutoTool.java # src/main/java/meteordevelopment/meteorclient/systems/modules/render/blockesp/BlockESP.java # src/main/java/meteordevelopment/meteorclient/utils/misc/MeteorStarscript.java # src/main/java/meteordevelopment/meteorclient/utils/player/PathFinder.java
- Loading branch information
Showing
221 changed files
with
4,076 additions
and
2,385 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## Type of change | ||
|
||
- [ ] Bug fix | ||
- [ ] New feature | ||
|
||
## Description | ||
|
||
A summary of the changes along with the reasoning behind the changes. | ||
|
||
## Related issues | ||
|
||
Mention any issues that this pr relates to. | ||
|
||
# How Has This Been Tested? | ||
|
||
Videos or screenshots of the changes if applicable. | ||
|
||
# Checklist: | ||
|
||
- [ ] My code follows the style guidelines of this project. | ||
- [ ] I have added comments to my code in more complex areas. | ||
- [ ] I have tested the code in both development and production environments. |
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,33 @@ | ||
name: Issue automatic actions | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
issue-moderator: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Similarity analysis | ||
uses: actions-cool/issues-similarity-analysis@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
filter-threshold: 0.60 | ||
title-excludes: '' | ||
comment-title: | | ||
### Your issue looks similar to these issues: | ||
Please close if duplicate. | ||
comment-body: '${index}. ${similarity} #${number}' | ||
- uses: actions/checkout@v2 | ||
- name: Automatically close issues that don't follow the issue template | ||
uses: lucasbento/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-close-message: | | ||
@${issue.user.login}: hello! :wave: | ||
This issue is being automatically closed because it does not follow the issue template." | ||
closed-issues-label: "invalid" | ||
|
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
17 changes: 17 additions & 0 deletions
17
.../java/meteordevelopment/meteorclient/events/entity/player/BlockBreakingCooldownEvent.java
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,17 @@ | ||
/* | ||
* This file is part of the Meteor Client distribution (https://github.com/MeteorDevelopment/meteor-client). | ||
* Copyright (c) Meteor Development. | ||
*/ | ||
|
||
package meteordevelopment.meteorclient.events.entity.player; | ||
|
||
public class BlockBreakingCooldownEvent { | ||
private static final BlockBreakingCooldownEvent INSTANCE = new BlockBreakingCooldownEvent(); | ||
|
||
public int cooldown; | ||
|
||
public static BlockBreakingCooldownEvent get(int cooldown) { | ||
INSTANCE.cooldown = cooldown; | ||
return INSTANCE; | ||
} | ||
} |
24 changes: 0 additions & 24 deletions
24
.../java/meteordevelopment/meteorclient/events/entity/player/CobwebEntityCollisionEvent.java
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
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.