summaryrefslogtreecommitdiff
path: root/src/base/shot.c
diff options
context:
space:
mode:
authorDusan Durech <dusan@debian.debian>2009-04-12 23:00:24 +0200
committerDusan Durech <dusan@debian.debian>2009-04-12 23:00:24 +0200
commit0287f62578cb4aa643649a9d62dc753586b16b30 (patch)
tree7f6e2721d71ab2824b7d163a5b878d390ddb7918 /src/base/shot.c
parent5876841408bf307d78d254b5ca355c61044e9e72 (diff)
fix bad preFixs
Diffstat (limited to 'src/base/shot.c')
-rw-r--r--src/base/shot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/shot.c b/src/base/shot.c
index 38ebe5e..5d55f82 100644
--- a/src/base/shot.c
+++ b/src/base/shot.c
@@ -213,7 +213,7 @@ void shot_bound_bombBall(shot_t * shot)
shot->py = getRandomCourse(shot->py, +10);
shot->isCanKillAuthor = 1;
- if (netMultiplayer_get_game_type() == NET_GAME_TYPE_SERVER) {
+ if (net_multiplayer_get_game_type() == NET_GAME_TYPE_SERVER) {
proto_send_shot_server(PROTO_SEND_ALL, NULL, shot);
}
}
@@ -309,7 +309,7 @@ void shot_check_is_tux_screen(arena_t * arena)
list_t *listClient;
int i;
- if (netMultiplayer_get_game_type() != NET_GAME_TYPE_SERVER) {
+ if (net_multiplayer_get_game_type() != NET_GAME_TYPE_SERVER) {
return;
}