mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2025-02-20 19:12:22 +00:00
fixed bug in bot path creation system (thx zturtleman)
added discordlogo.tga added reflect image for babel (by insellium)
This commit is contained in:
parent
c83d372dbd
commit
c16d8e6e49
5 changed files with 4 additions and 4 deletions
BIN
baseq3r/menu/art/discordlogo.tga
Normal file
BIN
baseq3r/menu/art/discordlogo.tga
Normal file
Binary file not shown.
After Width: | Height: | Size: 256 KiB |
BIN
baseq3r/textures/reflect/babel.jpg
Normal file
BIN
baseq3r/textures/reflect/babel.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
|
@ -322,7 +322,7 @@ static void CG_Obituary( entityState_t *ent ) {
|
|||
message = "was caught by";
|
||||
break;
|
||||
case MOD_GAUNTLET:
|
||||
message = "was pummeled by";
|
||||
message = "was sawn by";
|
||||
break;
|
||||
case MOD_MACHINEGUN:
|
||||
message = "was machinegunned by";
|
||||
|
|
|
@ -1947,7 +1947,7 @@ void Cmd_Stats_f( gentity_t *ent ) {
|
|||
// STONELANCE
|
||||
void Cmd_SaveBPoints_f( gentity_t *other )
|
||||
{
|
||||
int i;
|
||||
int i, j;
|
||||
fileHandle_t f;
|
||||
char buffer[256];
|
||||
char serverinfo[MAX_INFO_STRING];
|
||||
|
@ -1955,7 +1955,7 @@ void Cmd_SaveBPoints_f( gentity_t *other )
|
|||
|
||||
trap_GetServerinfo( serverinfo, sizeof(serverinfo) );
|
||||
|
||||
Com_sprintf( buffer, sizeof(buffer), "maps/%s_bpd.txt.", Info_ValueForKey( serverinfo, "mapname" ) );
|
||||
Com_sprintf( buffer, sizeof(buffer), "bezier/%s_bpd.txt", Info_ValueForKey( serverinfo, "mapname" ) );
|
||||
Com_Printf( "Writing out bezier path information to: '%s'\n", buffer );
|
||||
trap_FS_FOpenFile( buffer, &f, FS_WRITE );
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define BASETA "missionpack"
|
||||
|
||||
#ifndef PRODUCT_VERSION
|
||||
#define PRODUCT_VERSION "v0.0.3.0_r394"
|
||||
#define PRODUCT_VERSION "v0.0.3.0_r396"
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue