Skip to content

Commit

Permalink
Fixed hexdoc and fixed velocity scaling on non-bouncy conjured block
Browse files Browse the repository at this point in the history
  • Loading branch information
miyucomics committed Feb 23, 2024
1 parent 6ff940e commit 76e2320
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ class AdvancedConjuredBlock : BlockConjured(
entity.setVelocity(velocity.x, -velocity.y, velocity.z)
entity.fallDistance = 0f
}
} else {
val velocity = entity.velocity
entity.setVelocity(velocity.x, 0.0, velocity.z)
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hexical.category.lamp",
"icon": "hexical:lamp",
"sortnum": 2.5,
"sortnum": 2,
"description": "hexical.category.lamp.desc"
}

0 comments on commit 76e2320

Please sign in to comment.