Skip to content

Commit 44a18dd

Browse files
committed
Merge branch 'refs/heads/mc1.19.2/main' into mc1.18.2/main
# Conflicts: # gradle.properties
2 parents 03bc2f9 + b5970e7 commit 44a18dd

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.8.2 - 2024-05-29
9+
10+
### Fixed
11+
12+
- A mixin error causing startup crash in 1.19
13+
814
## 0.8.1 - 2024-05-29
915

1016
### Added

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ mod_name=Create: Connected
6565
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
6666
mod_license=GNU Affero General Public License v3.0
6767
# The mod version. See https://semver.org/
68-
mod_version=0.8.1-mc1.18.2
68+
mod_version=0.8.2-mc1.18.2
6969
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
7070
# This should match the base package used for the mod sources.
7171
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

src/main/java/com/hlysine/create_connected/mixin/fluidvessel/SteamEngineBlockMixin.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ private void onRemoveVessel(BlockState pState, Level pLevel, BlockPos pPos, Bloc
3333

3434
@Inject(
3535
at = @At("HEAD"),
36-
method = "canAttach(Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z",
37-
cancellable = true
36+
method = "canAttach",
37+
cancellable = true,
38+
remap = false
3839
)
3940
private static void canAttach(LevelReader pReader, BlockPos pPos, Direction pDirection, CallbackInfoReturnable<Boolean> cir) {
4041
BlockPos blockpos = pPos.relative(pDirection);

update.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"homepage": "https://github.com/hlysine/create_connected/",
33
"promos": {
4-
"1.20.1-recommended": "0.8.1-mc1.20.1",
5-
"1.19.2-recommended": "0.8.1-mc1.19.2",
6-
"1.18.2-recommended": "0.8.1-mc1.18.2"
4+
"1.20.1-recommended": "0.8.2-mc1.20.1",
5+
"1.19.2-recommended": "0.8.2-mc1.19.2",
6+
"1.18.2-recommended": "0.8.2-mc1.18.2"
77
}
88
}

0 commit comments

Comments
 (0)