summaryrefslogtreecommitdiff
path: root/src/players.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2023-10-28 10:52:18 +0200
committerAldrik Ramaekers <aldrik@amftech.nl>2023-10-28 10:52:18 +0200
commit18c1dfbb78d98516f5480f8199910fe41ac904df (patch)
tree8ee69fde44ac3b8969ebf529883656a2d05b1e45 /src/players.c
parent641f81317a5b5cea6b3c5a4c65b1ca4313b0d8c0 (diff)
sound layer, bouncing
Diffstat (limited to 'src/players.c')
-rw-r--r--src/players.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/players.c b/src/players.c
index fda8700..4ea763d 100644
--- a/src/players.c
+++ b/src/players.c
@@ -202,7 +202,7 @@ void take_player_input(platform_window* window) {
double length = sqrt(dirx * dirx + diry * diry);
dirx /= length;
diry /= length;
- log_info("THROWING!");
+
throw_throwable(window, player_id, THROWABLE_GRENADE, dirx, diry);
//network_message message = create_protocol_user_shoot(player_id, dirx, diry);
//add_message_to_outgoing_queuex(message, *global_state.client);