Skip to content

Commit

Permalink
2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed May 20, 2023
1 parent 804b303 commit d14bce2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ org.gradle.jvmargs = -Xmx1G
org.gradle.parallel = true

# https://fabricmc.net/develop
minecraft_version = 1.19
yarn_mappings = 1.19+build.4
minecraft_version = 1.18
yarn_mappings = 1.18+build.1
loader_version = 0.14.19

mod_version = 2.1.0
maven_group = net.krlite
archives_base_name = taptab

# Dependencies
fabric_version = 0.58.0+1.19
fabric_version = 0.46.0+1.18
2 changes: 1 addition & 1 deletion src/main/java/net/krlite/taptab/TapTabClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static void listenInput(MinecraftClient client) {
if (client.player == null) return;
if (CYCLE.wasPressed()) {
if (System.currentTimeMillis() - lastPressed < TAB_DELAY) {
if (client.options.sneakKey.isPressed())
if (client.options.keySneak.isPressed())
InventorySwapper.swapToPrevLine();
else InventorySwapper.swapToNextLine();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"fabricloader": ">=0.14.19",
"fabric": "*",
"fabric-key-binding-api-v1": "*",
"minecraft": ["~1.19", "~1.19.1", "~1.19.2"]
"minecraft": ["~1.18", "~1.18.1", "~1.18.2"]
},
"suggests": {
}
Expand Down

0 comments on commit d14bce2

Please sign in to comment.