summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_misc.c12
-rw-r--r--src/game/bg_public.h4
-rw-r--r--src/game/g_client.c4
-rw-r--r--src/game/tremulous.h6
4 files changed, 15 insertions, 11 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c
index 3dfbaae8..04328d71 100644
--- a/src/game/bg_misc.c
+++ b/src/game/bg_misc.c
@@ -3152,12 +3152,12 @@ upgradeAttributes_t bg_upgrades[ ] =
WUT_HUMANS //WUTeam_t team;
},
{
- UP_100CGAMMO, //int upgradeNum;
+ UP_CGAMMO, //int upgradeNum;
CGAMMO_PRICE, //int price;
( 1 << S1 )|( 1 << S2 )|( 1 << S3 ), //int stages
SLOT_NONE, //int slots;
- "100cgammo", //char *upgradeName;
- "100 Chaingun bullets", //char *upgradeHumanName;
+ "cgammo", //char *upgradeName;
+ "Chaingun bullets", //char *upgradeHumanName;
"icons/iconw_gauntlet",
WP_CHAINGUN, //weapon_t weaponAmmo;
100, //int ammo;
@@ -3165,12 +3165,12 @@ upgradeAttributes_t bg_upgrades[ ] =
WUT_HUMANS //WUTeam_t team;
},
{
- UP_200GAS, //int upgradeNum;
+ UP_GAS, //int upgradeNum;
GAS_PRICE, //int price;
( 1 << S1 )|( 1 << S2 )|( 1 << S3 ), //int stages
SLOT_NONE, //int slots;
- "200gas", //char *upgradeName;
- "200 Flamer gas", //char *upgradeHumanName;
+ "gas", //char *upgradeName;
+ "Flamer gas", //char *upgradeHumanName;
"icons/iconw_gauntlet",
WP_FLAMER, //weapon_t weaponAmmo;
200, //int ammo;
diff --git a/src/game/bg_public.h b/src/game/bg_public.h
index 76115f18..5c32a435 100644
--- a/src/game/bg_public.h
+++ b/src/game/bg_public.h
@@ -353,8 +353,8 @@ typedef enum
UP_BATTLESUIT,
UP_MGCLIP,
- UP_100CGAMMO,
- UP_200GAS,
+ UP_CGAMMO,
+ UP_GAS,
UP_NUM_UPGRADES
} upgrade_t;
diff --git a/src/game/g_client.c b/src/game/g_client.c
index af242be3..0935c84a 100644
--- a/src/game/g_client.c
+++ b/src/game/g_client.c
@@ -1405,6 +1405,10 @@ void ClientSpawn( gentity_t *ent, gentity_t *spawn )
// health will count down towards max_health
ent->health = client->ps.stats[ STAT_HEALTH ] = client->ps.stats[ STAT_MAX_HEALTH ]; //* 1.25;
+ //clear the credits array
+ for( i = 0; i < MAX_CLIENTS; i++ )
+ ent->credits[ i ] = 0;
+
G_SetOrigin( ent, spawn_origin );
VectorCopy( spawn_origin, client->ps.origin );
diff --git a/src/game/tremulous.h b/src/game/tremulous.h
index 74d0b1ce..6e7893db 100644
--- a/src/game/tremulous.h
+++ b/src/game/tremulous.h
@@ -365,11 +365,11 @@
#define BSUIT_PRICE 200
-#define MGCLIP_PRICE 10
+#define MGCLIP_PRICE 0
-#define CGAMMO_PRICE 10
+#define CGAMMO_PRICE 0
-#define GAS_PRICE 10
+#define GAS_PRICE 0