diff --git a/VERSION b/VERSION index 005119ba..8e8299dc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4.1 +2.4.2 diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 38acb381..2d19feb7 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +**2.4.2** +* Fix Bug Where Buckets Turned Lava Into Water + **2.4.1** * Allow More Characters In Usernames And Chat * Fix Running On ARMHF Debian Buster diff --git a/mods/src/bucket/bucket.cpp b/mods/src/bucket/bucket.cpp index 82c3036c..2210dd4c 100644 --- a/mods/src/bucket/bucket.cpp +++ b/mods/src/bucket/bucket.cpp @@ -40,7 +40,7 @@ static int32_t BucketItem_useOn(__attribute__((unused)) unsigned char *item, Ite if (tile == *(int32_t *) (*Tile_calmWater + Tile_id_property_offset)) { new_auxiliary = *(int32_t *) (*Tile_water + Tile_id_property_offset); } else if (tile == *(int32_t *) (*Tile_calmLava + Tile_id_property_offset)) { - new_auxiliary = *(int32_t *) (*Tile_water + Tile_id_property_offset); + new_auxiliary = *(int32_t *) (*Tile_lava + Tile_id_property_offset); } if (new_auxiliary != 0) { // Valid