summaryrefslogtreecommitdiff
path: root/src/base
diff options
context:
space:
mode:
Diffstat (limited to 'src/base')
-rw-r--r--src/base/shot.c1
-rw-r--r--src/base/shot.h1
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;