Fixed target_delay.

This commit is contained in:
UberGames 2011-07-20 17:06:50 +02:00
parent ec6287e156
commit e037905d97

View file

@ -147,13 +147,10 @@ void Use_Target_Delay( gentity_t *ent, gentity_t *other, gentity_t *activator )
}
void SP_target_delay( gentity_t *ent ) {
// check delay for backwards compatability
if ( !G_SpawnFloat( "delay", "0", &ent->wait ) ) {
G_SpawnFloat( "wait", "1", &ent->wait );
}
if ( !ent->wait ) {
ent->wait = 1;
G_SpawnInt("delay", "0", &ent->wait);
if(!ent->wait)
ent->wait = 1;
}
ent->use = Use_Target_Delay;
}