Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to 1.20.4 (nothing changed) #1

Merged
merged 2 commits into from
Mar 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ pluginManagement {
maven("https://maven.fabricmc.net/")
maven("https://server.bbkr.space/artifactory/libs-release/")
}
}
}