Skip to content

Commit

Permalink
Update to Minecraft 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kalucky0 committed Dec 5, 2024
1 parent 493a71f commit 31bf2ea
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

![Code license (MIT)](https://img.shields.io/github/license/devs-immortal/bind-cmd)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/devs-immortal/bind-cmd)
![Minecraft 1.21.3](https://img.shields.io/badge/Minecraft-1.21.3-yellowgreen)
![Minecraft 1.21.4](https://img.shields.io/badge/Minecraft-1.21.4-yellowgreen)

The BindCommands mod allows players to bind Minecraft commands to specific keys on their keyboard, making it easier and faster to execute commands in the game. The mod is built using the [Fabric](https://fabricmc.net/) mod loader and is compatible with Minecraft versions from 1.16.5 up to 1.21.3.
The BindCommands mod allows players to bind Minecraft commands to specific keys on their keyboard, making it easier and faster to execute commands in the game. The mod is built using the [Fabric](https://fabricmc.net/) mod loader and is compatible with Minecraft versions from 1.16.5 up to 1.21.4.

## Features

Expand All @@ -14,7 +14,7 @@ The BindCommands mod allows players to bind Minecraft commands to specific keys

## Installation

1. Download and install [Fabric](https://fabricmc.net/use/installer/) for Minecraft 1.21.3.
1. Download and install [Fabric](https://fabricmc.net/use/installer/) for Minecraft 1.21.4.
2. Download BindCommands, [Mod Menu](https://github.com/TerraformersMC/ModMenu), and [Fabric Language Kotlin](https://github.com/FabricMC/fabric-language-kotlin) mods.
3. Place the downloaded mod files in the "mods" folder located in your Minecraft game directory.
4. Launch Minecraft with the Fabric mod loader and enjoy the mod!
Expand Down
18 changes: 9 additions & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ org.gradle.jvmargs=-Xmx4G

# Fabric Properties
# Check these on https://fabricmc.net/develop/
minecraft_version=1.21.3
yarn_mappings=1.21.3+build.2
loader_version=0.16.7
minecraft_version=1.21.4
yarn_mappings=1.21.4+build.1
loader_version=0.16.9

# Fabric API
fabric_version=0.107.0+1.21.3
loom_version=1.8-SNAPSHOT
fabric_version=0.110.5+1.21.4
loom_version=1.9-SNAPSHOT

# Mod Properties
mod_version=1.5.3
mod_version=1.5.4
maven_group=net.immortaldevs
archives_base_name=fabric-bind-cmd

# Kotlin
kotlin_version=2.0.20
fabric_kotlin_version=1.12.3+kotlin.2.0.21
modmenu_version=12.0.0-beta.1
kotlin_version=2.1.0
fabric_kotlin_version=1.13.0+kotlin.2.1.0
modmenu_version=13.0.0-beta.1
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mon Oct 28 00:38:00 UTC 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class BindingsListWidget(val parent: ModConfigScreen, client: MinecraftClient?)
Config.bindings.remove(binding)
list.parent.selectedKeyBinding = null
list.removeEntry(this)
scrollAmount -= 20
scrollY -= 20
list.update()
}

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 @@ -37,7 +37,7 @@
"fabric-api": "*",
"fabric-language-kotlin": "*",
"fabricloader": ">=0.15.0",
"minecraft": ">=1.21.2 <=1.22",
"minecraft": ">=1.21.4 <1.22",
"modmenu": "*"
}
}

0 comments on commit 31bf2ea

Please sign in to comment.