a game about throwing hammers made for the github game off
Diffstat (limited to 'player/player.gd')
| -rw-r--r-- | player/player.gd | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/player/player.gd b/player/player.gd index 9d45ec1..4aa382a 100644 --- a/player/player.gd +++ b/player/player.gd @@ -310,7 +310,6 @@ func disable_aim_gizmo() -> void: ## Throws the hammer. func throw(rot: float) -> void: - rot += randf_range(-0.01, 0.01) remove_child(current_hammer) current_hammer.position = Vector2(0, -8) # center current_hammer.global_position = to_global(current_hammer.position) |