diff options
Diffstat (limited to 'src/modules/modWall.c')
| -rwxr-xr-x | src/modules/modWall.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/modules/modWall.c b/src/modules/modWall.c index 4544ea9..4030795 100755 --- a/src/modules/modWall.c +++ b/src/modules/modWall.c @@ -136,9 +136,13 @@ void eventConflictShotWithWall() continue; } - if( thisShot->gun == GUN_BOMBBALL && export_fce->fce_getNetTypeGame() != NET_GAME_TYPE_CLIENT ) + if( thisShot->gun == GUN_BOMBBALL) { - export_fce->fce_boundBombBall(thisShot); + if( export_fce->fce_getNetTypeGame() != NET_GAME_TYPE_CLIENT ) + { + export_fce->fce_boundBombBall(thisShot); + } + continue; } |