diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-08 21:17:12 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-08 21:17:12 +0000 |
| commit | 0eda3185ba30d433029c9a7e725529a801c93d80 (patch) | |
| tree | 3eeed16eb926fc3529f051704fd53070670e7124 /src/modules/modWall.c | |
| parent | 7386e93e32575bae21006d0300cbff4cf7a40926 (diff) | |
- do widgetu textfiled sa zmesti IP adresa ( zatial aspon IPv4 )
- v arene je vzdy kostantny pocet zbarni/bonsov ( implicitny je 10, nastavuje sa v configu pomocou ITEM )
- oprava chyby, tux s binusom hidden sa moze teleportovat
- oprava chyb v moduloch pipe teleport a wall
git-svn-id: http://opensvn.csie.org/tuxanci_ng@125 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
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; } |