diff --git a/reaction/ChangeLog b/reaction/ChangeLog index b69b954d..def2d73b 100644 --- a/reaction/ChangeLog +++ b/reaction/ChangeLog @@ -8,4 +8,5 @@ * Fixed the respawning of dead players weapons and items in TP * Fixed to allow > 16 breakables * Recoded the AI for changing weapon modes. Bots can now zoom in/out with the SSG. -* Made it possible to add random bots when starting a game from the UI \ No newline at end of file +* Made it possible to add random bots when starting a game from the UI +* Items can now be dropped during bandaging diff --git a/reaction/game/g_cmds.c b/reaction/game/g_cmds.c index bf1e2fed..09de9393 100644 --- a/reaction/game/g_cmds.c +++ b/reaction/game/g_cmds.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.131 2002/06/17 16:57:39 jbravo +// Items can now be dropped during bandaging +// // Revision 1.130 2002/06/17 03:22:58 jbravo // Base voting system is now fixed. // @@ -2778,11 +2781,11 @@ void Cmd_DropItem_f(gentity_t * ent) return; // JBravo: no dropping stuff while bandaging. Fix dedicated to GoKu and JesterRace :) -// if ((ent->client->ps.stats[STAT_RQ3] & RQ3_BANDAGE_WORK) == RQ3_BANDAGE_WORK) { - if (ent->client->ps.weaponstate == WEAPON_BANDAGING) { +// Turns out they are full of shit... :) +/* if (ent->client->ps.weaponstate == WEAPON_BANDAGING) { trap_SendServerCommand(ent - g_entities, va("print \"You are too busy bandaging...\n\"")); return; - } + } */ if (ent->client->ps.stats[STAT_HOLDABLE_ITEM]) { //Elder: reset item totals if using bandolier diff --git a/reaction/game/g_main.c b/reaction/game/g_main.c index dbf44c37..168ca278 100644 --- a/reaction/game/g_main.c +++ b/reaction/game/g_main.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.87 2002/06/17 16:57:39 jbravo +// Items can now be dropped during bandaging +// // Revision 1.86 2002/06/17 03:22:58 jbravo // Base voting system is now fixed. // @@ -1265,10 +1268,6 @@ void CalculateRanks(void) level.numPlayingClients++; if (!(g_entities[i].r.svFlags & SVF_BOT)) { level.numVotingClients++; -/* if (level.clients[i].sess.savedTeam == TEAM_RED) - level.numteamVotingClients[0]++; - else if (level.clients[i].sess.savedTeam == TEAM_BLUE) - level.numteamVotingClients[1]++; */ } if (level.follow1 == -1) { level.follow1 = i;