mirror of
https://github.com/UberGames/RPG-X2.git
synced 2025-04-06 06:11:53 +00:00
Fixed target_delay.
This commit is contained in:
parent
ec6287e156
commit
e037905d97
1 changed files with 3 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue