diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-19 16:27:00 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-19 16:27:00 +0000 |
| commit | d02ee64a52007d50a1647641630e77601a43d26d (patch) | |
| tree | 764c18292f855e71a9562240e4a105d96666c7b3 /src/base | |
| parent | 8b93dd8dac51e28bb25ad341f594d21a955c3adb (diff) | |
- oprava, moduly wall a pipe mohli duplicitne odstranovat tu istu strelu z priestoru
( chybu som neduplikoval ale tipujem, ze je to opravene spravne )
- big arena pouziva vlastnu texturu ako pozadie
git-svn-id: http://opensvn.csie.org/tuxanci_ng@160 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/base')
| -rw-r--r-- | src/base/shot.c | 1 | ||||
| -rw-r--r-- | src/base/shot.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/base/shot.c b/src/base/shot.c index 5e95a8e..463796a 100644 --- a/src/base/shot.c +++ b/src/base/shot.c @@ -80,6 +80,7 @@ shot_t* newShot(int x,int y, int px, int py, int gun, int author_id) } new->isCanKillAuthor = FALSE; + new->del = FALSE; switch( gun ) { diff --git a/src/base/shot.h b/src/base/shot.h index d279c02..189cf52 100644 --- a/src/base/shot.h +++ b/src/base/shot.h @@ -34,6 +34,7 @@ typedef struct shot_struct int author_id; bool_t isCanKillAuthor; + bool_t del; #ifndef PUBLIC_SERVER image_t *img; |