mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-04-22 17:00:53 +00:00
testing if this works
This commit is contained in:
parent
fe3e5d419c
commit
91acc1a05e
2 changed files with 3 additions and 3 deletions
|
@ -2363,7 +2363,7 @@ void G_Client_BeginIntermission( void ) {
|
|||
else
|
||||
doingLevelshot = qfalse;
|
||||
|
||||
if ( level.intermissiontime && level.intermissiontime != -1 ) {
|
||||
if ( level.intermissiontime != 0 && level.intermissiontime != -1 ) {
|
||||
return; // already active
|
||||
}
|
||||
|
||||
|
@ -2405,7 +2405,7 @@ void G_Client_BeginIntermission( void ) {
|
|||
|
||||
static void G_ClearObjectives( void )
|
||||
{
|
||||
/*@temp@*/ gentity_t *tent;
|
||||
gentity_t *tent;
|
||||
|
||||
tent = G_TempEntity( vec3_origin, EV_OBJECTIVE_COMPLETE );
|
||||
//Be sure to send the event to everyone
|
||||
|
|
|
@ -610,7 +610,7 @@ void G_FreeEntity( gentity_t *ed ) {
|
|||
ed->inuse = qfalse;
|
||||
}
|
||||
|
||||
gentity_t *G_TempEntity( vec3_t origin, int event ) {
|
||||
/*@shared@*/ gentity_t *G_TempEntity( vec3_t origin, int event ) {
|
||||
gentity_t *e;
|
||||
vec3_t snapped;
|
||||
|
||||
|
|
Loading…
Reference in a new issue