Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
cleaned it up
Browse files Browse the repository at this point in the history
  • Loading branch information
garlic-bred committed Apr 5, 2024
1 parent 22d2016 commit b31e21c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ yarn_mappings=1.20.2+build.4
loader_version=0.14.0

# Mod Properties
mod_version=1.0.0
mod_version=0.1.0-1.20.2
maven_group=com.bread
archives_base_name=easy-bedrock-breaker

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/bread/mixin/ClientConnectionMixin.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.bread.EasyBedrockBreaker;
import net.minecraft.network.ClientConnection;
import net.minecraft.network.packet.s2c.common.DisconnectS2CPacket;
import net.minecraft.text.Text;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
Expand All @@ -15,7 +14,6 @@ public class ClientConnectionMixin {
@Inject(method = "disconnect", at = @At("HEAD"))
private void clearPackets(Text disconnectReason, CallbackInfo ci) {
EasyBedrockBreaker.clearPackets();
// EasyBedrockBreaker.delayPackets = false;
}

}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"key.bread.delayBlockPackets": "Delay Block C2S Packets",
"category.bread.breadclient": "Bread Client"
"key.bread.delayBlockPackets": "Delay Packets",
"category.bread.breadclient": "Easy Bedrock Breaker"
}
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"depends": {
"fabricloader": ">=0.14.0",
"minecraft": "~1.20.2",
"minecraft": ">=1.20.2 <1.21",
"java": ">=17",
"fabric-api": "*"
},
Expand Down

0 comments on commit b31e21c

Please sign in to comment.