Skip to content

Commit

Permalink
update to 1.20.4 (nothing changed)
Browse files Browse the repository at this point in the history
  • Loading branch information
btwonion committed Mar 23, 2024
1 parent 443566a commit ee20a2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 36 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {

group = "dev.nyon"
val majorVersion = "1.0.0"
val mcVersion = "1.20.1"
val mcVersion = "1.20.4"
version = "$majorVersion-$mcVersion"
val authors = listOf("btwonion")
val githubRepo = "btwonion/better-boat-movement"
Expand All @@ -34,18 +34,18 @@ dependencies {
minecraft("com.mojang:minecraft:$mcVersion")
mappings(
loom.layered {
parchment("org.parchmentmc.data:parchment-1.20.1:2023.09.03@zip")
parchment("org.parchmentmc.data:parchment-1.20.4:2024.02.25@zip")
officialMojangMappings()
}
)

implementation("org.vineflower:vineflower:1.9.3")
modImplementation("net.fabricmc:fabric-loader:0.15.7")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.92.0+$mcVersion")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.96.11+$mcVersion")
modImplementation("net.fabricmc:fabric-language-kotlin:1.10.19+kotlin.1.9.23")

modImplementation("dev.isxander.yacl:yet-another-config-lib-fabric:3.2.2+1.20")
modImplementation("com.terraformersmc:modmenu:7.2.2")
modImplementation("dev.isxander.yacl:yet-another-config-lib-fabric:3.3.2+1.20.4")
modImplementation("com.terraformersmc:modmenu:9.0.0")

include(modImplementation("dev.nyon:konfig:1.1.0-1.20.4")!!)
}
Expand Down
31 changes: 0 additions & 31 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,31 +0,0 @@
# Better Boat Movement
> Adds quality of live improvements to boats
## Features
- configure step height to not be stuck in front of blocks, that are slightly higher
- configure player eject time, when player is out of control of the boat
- boost boat upwards, if underwater

## Configuration

<details>
<summary>/config/better-boat-movement.json</summary>

```json5
{
"version": 1, // just ignore that, only for migrations
"config": {
"stepHeight": 0.3, // the height the boat should travel upwards
"playerEjectTicks": 200.0, // defines the ticks that should pass before ejecting a player, when the player lost control over the boat
"boostUnderwater": true, // toggles, whether a boat, which is underwater should be boosted upwards with half of the step height
"wallHitCooldownTicks": 5 // defines the ticks that should pass before moving the boat up a block
}
}
```
</details>

### Other
⚠️ The development version is always the latest stable release of Minecraft.
Therefore, new features will only be available for the current and following Minecraft versions.

If you need help with any of my mods just join my [discord server](https://nyon.dev/discord)

0 comments on commit ee20a2b

Please sign in to comment.