Skip to content
Merged
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
188 changes: 177 additions & 11 deletions README.md

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions bin/main/addon-template.mixins.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"required": true,
"package": "com.baseminer.basefinder.mixin",
"package": "com.stashhunter.stashhunter.mixin",
"compatibilityLevel": "JAVA_21",
"client": [
"LivingEntityMixin"
"LivingEntityMixin",
"PlayerInventoryAccessor"
],
"injectors": {
"defaultRequire": 1
Expand Down
10 changes: 5 additions & 5 deletions bin/main/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"schemaVersion": 1,
"id": "base-finder",
"id": "stash-hunter",
"version": "${version}",
"name": "Base Finder",
"description": "A Meteor client addon for finding bases on anarchy servers.",
"name": "Stash-Hunter",
"description": "A Meteor client addon for finding stashes on anarchy servers.",
"authors": [
"omtoi"
],
"contact": {
"sources": "https://github.com/omtoi101/stash-finder"
"sources": "https://github.com/omtoi101/stash-hunter"
},
"icon": "assets/template/icon.png",
"environment": "client",
"entrypoints": {
"meteor": [
"com.baseminer.basefinder.BaseFinder"
"com.stashhunter.stashhunter.StashHunter"
]
},
"mixins": [
Expand Down
70 changes: 0 additions & 70 deletions docs/CONFIGURATION.md

This file was deleted.

62 changes: 0 additions & 62 deletions docs/FEATURES.md

This file was deleted.

42 changes: 0 additions & 42 deletions docs/USAGE.md

This file was deleted.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ yarn_mappings=1.21.8+build.1
loader_version=0.16.14

# Mod Properties
mod_version=0.1.4
mod_version=0.1.5
maven_group=com.example
archives_base_name=stash-hunter

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/stashhunter/stashhunter/StashHunter.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import com.stashhunter.stashhunter.modules.NewerNewChunks;
import com.stashhunter.stashhunter.modules.StashHunterModule;
import com.stashhunter.stashhunter.modules.StuckDetector;
import com.stashhunter.stashhunter.modules.AutoElytraRepair;
import com.mojang.logging.LogUtils;
import meteordevelopment.meteorclient.MeteorClient;
import meteordevelopment.meteorclient.addons.GithubRepo;
Expand Down Expand Up @@ -39,6 +40,7 @@ public void onInitialize() {
Modules.get().add(new StuckDetector());
Modules.get().add(new AltitudeLossDetector());
Modules.get().add(new NewerNewChunks());
Modules.get().add(new AutoElytraRepair());

// Commands
Commands.add(new StashHunterCommand());
Expand Down
Loading
Loading