summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2015-04-04 19:19:17 +0200
committerPaweł Redman <pawel.redman@gmail.com>2015-04-04 19:19:17 +0200
commitd6fa5c74ba80688a3e14d2e099bfb6077323d079 (patch)
tree8e690b045833c644c8830c848f1dc31bbfba6072 /src/game
parent8c6ad4c73c816dbe412e6fac0ad1c0d2837492cc (diff)
Initial implementation of hit sounds.
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_public.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h
index fa93839..a04d053 100644
--- a/src/game/bg_public.h
+++ b/src/game/bg_public.h
@@ -1245,6 +1245,6 @@ typedef struct
int cmdcmp( const void *a, const void *b );
// damage blob flags
-#define DAMAGE_BLOB_FRIENDLY 1
-#define DAMAGE_BLOB_BUILDABLE 2
-#define DAMAGE_BLOB_SPLASH 4
+#define DAMAGE_BLOB_SPLASH 1 // has to be 1
+#define DAMAGE_BLOB_BUILDABLE 2 // has to be 2
+#define DAMAGE_BLOB_FRIENDLY 4