This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
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
1 parent
2ba0af8
commit 5b3ae66
Showing
20 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.2 KB
build/classes/java/main/net/shulker/dupe/mixin/ClientConnectionMixin.class
Binary file not shown.
Binary file added
BIN
+926 Bytes
build/classes/java/main/net/shulker/dupe/mixin/ClientPlayerEntityMixin.class
Binary file not shown.
Binary file added
BIN
+2.68 KB
build/classes/java/main/net/shulker/dupe/mixin/ShulkerBoxScreenMixin.class
Binary file not shown.
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,26 @@ | ||
{ | ||
"mappings": { | ||
"net/shulker/dupe/mixin/ClientPlayerEntityMixin": { | ||
"tick": "Lnet/minecraft/class_746;method_5773()V" | ||
}, | ||
"net/shulker/dupe/mixin/ShulkerBoxScreenMixin": { | ||
"render(Lnet/minecraft/client/util/math/MatrixStack;IIF)V": "Lnet/minecraft/class_495;method_25394(Lnet/minecraft/class_4587;IIF)V" | ||
}, | ||
"net/shulker/dupe/mixin/ClientConnectionMixin": { | ||
"send(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;)V": "Lnet/minecraft/class_2535;method_10752(Lnet/minecraft/class_2596;Lio/netty/util/concurrent/GenericFutureListener;)V" | ||
} | ||
}, | ||
"data": { | ||
"named:intermediary": { | ||
"net/shulker/dupe/mixin/ClientPlayerEntityMixin": { | ||
"tick": "Lnet/minecraft/class_746;method_5773()V" | ||
}, | ||
"net/shulker/dupe/mixin/ShulkerBoxScreenMixin": { | ||
"render(Lnet/minecraft/client/util/math/MatrixStack;IIF)V": "Lnet/minecraft/class_495;method_25394(Lnet/minecraft/class_4587;IIF)V" | ||
}, | ||
"net/shulker/dupe/mixin/ClientConnectionMixin": { | ||
"send(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;)V": "Lnet/minecraft/class_2535;method_10752(Lnet/minecraft/class_2596;Lio/netty/util/concurrent/GenericFutureListener;)V" | ||
} | ||
} | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 @@ | ||
v1 named intermediary |
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 @@ | ||
v1 named intermediary |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,38 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "shulker-dupe", | ||
"version": "1.0.0", | ||
|
||
"name": "Shulker Dupe", | ||
"description": "A mod that makes it easier to perform the shulker dupe.", | ||
"authors": [ | ||
"Coderx_Gamer" | ||
], | ||
"contact": { | ||
"homepage": "https://fabricmc.net/", | ||
"sources": "https://github.com/FabricMC/fabric-example-mod" | ||
}, | ||
|
||
"license": "CC0-1.0", | ||
"icon": "assets/shulker-dupe/icon.png", | ||
|
||
"environment": "client", | ||
"entrypoints": { | ||
"client": [ | ||
"net.shulker.dupe.MainClient" | ||
] | ||
}, | ||
"mixins": [ | ||
"shulker-dupe.mixins.json" | ||
], | ||
|
||
"depends": { | ||
"fabricloader": ">=0.11.3", | ||
"fabric": "*", | ||
"minecraft": "1.17.x", | ||
"java": ">=16" | ||
}, | ||
"suggests": { | ||
"another-mod": "*" | ||
} | ||
} |
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,14 @@ | ||
{ | ||
"required": true, | ||
"minVersion": "0.8", | ||
"package": "net.shulker.dupe.mixin", | ||
"compatibilityLevel": "JAVA_16", | ||
"client": [ | ||
"ShulkerBoxScreenMixin", | ||
"ClientPlayerEntityMixin", | ||
"ClientConnectionMixin" | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
} | ||
} |
Binary file not shown.
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,2 @@ | ||
Manifest-Version: 1.0 | ||
|
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,2 @@ | ||
Manifest-Version: 1.0 | ||
|
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,2 @@ | ||
Manifest-Version: 1.0 | ||
|