summaryrefslogtreecommitdiff
path: root/src/shot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shot.c')
-rw-r--r--src/shot.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/shot.c b/src/shot.c
index d105a5c..f9cfdb1 100644
--- a/src/shot.c
+++ b/src/shot.c
@@ -297,9 +297,12 @@ void moveShot(shot_t *shot, int position, int src_x, int src_y,
break;
}
+ shot->x += shot->px;
+ shot->y += shot->py;
+
if( getNetTypeGame() == NET_GAME_TYPE_SERVER )
{
- proto_send_shot_server(shot);
+ proto_send_shot_server(PROTO_SEND_ALL, NULL, shot);
}
}