Skip to content

Commit

Permalink
Fixed changelog, format
Browse files Browse the repository at this point in the history
  • Loading branch information
Faboslav committed Dec 23, 2022
1 parent cafbd14 commit 5dd94a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- Fixed moobloom transform sound
- Tweaked moobloom API
-

## mc1.19.3-1.7.1, December 20, 2022

- Added zombie horse trap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import net.fabricmc.api.Environment;
import net.minecraft.block.BlockState;
import net.minecraft.block.PlantBlock;
import net.minecraft.block.TallFlowerBlock;
import net.minecraft.block.TallPlantBlock;
import net.minecraft.block.enums.DoubleBlockHalf;
import net.minecraft.client.MinecraftClient;
Expand Down Expand Up @@ -55,7 +54,7 @@ public void render(
float scaleFactor = 0.8F;
float yOffset = -0.5F;

if(flower instanceof TallPlantBlock) {
if (flower instanceof TallPlantBlock) {
scaleFactor = 0.6F;
yOffset = -0.666F;
}
Expand Down

0 comments on commit 5dd94a5

Please sign in to comment.