Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
N3RDIUM committed Dec 9, 2021
1 parent 5a506bd commit a8aa129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/player/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def hit_test(self, position, vector, max_distance=8):
self.pointing_at[1] = previous
return key, previous
previous = key
x, y, z = x + dx / m, y + dy / m, z + dz / m
x, y, z = x + dx, y + dy, z + dz
self.pointing_at[0] = None
self.pointing_at[1] = None
return None, None
Expand Down

0 comments on commit a8aa129

Please sign in to comment.