Skip to content

Commit

Permalink
+ is a version
Browse files Browse the repository at this point in the history
  • Loading branch information
ZimnyCat committed Jun 9, 2022
1 parent 4eae18f commit b78a86c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 32 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: BigRat-final-MacOS
path: build/libs/bigrat_plus-dev.jar

build2:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: BigRat-final-Windows
path: build/libs/bigrat_plus-dev.jar
path: build/libs/bigrat-plus.jar
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ org.gradle.jvmargs=-Xmx3G
loader_version=0.11.1

# Mod Properties
mod_version = dev
mod_version = plus
maven_group = bleach.hack
archives_base_name = bigrat_plus
archives_base_name = bigrat

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/bleach/hack/BleachHack.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@

public class BleachHack implements ModInitializer {

public static final String NAME = "BigRat+";
public static final String NAME = "BigRat";

public static final String VERSION = "dev";
public static final String VERSION = "+";

public static final String CLIENT = NAME + " " + VERSION;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/bleach/hack/command/commands/CmdNotebot.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public String getDescription() {

@Override
public String getSyntax() {
return "notebot | notebot convert (file in .minecraft/bleach/)";
return "notebot | notebot convert (file in .minecraft/BigRat/)";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void onCommand(String command, String[] args) throws Exception {
if(!GraphicsEnvironment.isHeadless()) {
System.setProperty("java.awt.headless", "false");
}
Desktop.getDesktop().open(new File(String.valueOf(Paths.get(MinecraftClient.getInstance().runDirectory.getPath(), "bleach/"))));
Desktop.getDesktop().open(new File(String.valueOf(Paths.get(MinecraftClient.getInstance().runDirectory.getPath(), "BigRat/"))));
}

}
3 changes: 1 addition & 2 deletions src/main/java/bleach/hack/module/mods/CrystalAura.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,13 @@ private boolean place(BlockPos pos) {
return true;
}

private boolean doShit() {
private void doShit() {
if (getSetting(7).asToggle().state && mc.player.inventory.getMainHandStack().getItem() != Items.END_CRYSTAL
&& !mc.options.keyUse.isPressed()) {
preSlot = mc.player.inventory.selectedSlot;
Integer crystalSlot = Finder.find(Items.END_CRYSTAL, true);
if (crystalSlot != null) mc.player.inventory.selectedSlot = crystalSlot;
}
return true;
}

@Subscribe
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"schemaVersion": 1,
"id": "bigrat_plus",
"version": "dev",
"name": "BigRat+",
"id": "bigrat",
"version": "+",
"name": "BigRat",
"description": "low quality bleachhack skid",
"authors": [
"ZimnyCat#2355"
Expand Down

0 comments on commit b78a86c

Please sign in to comment.