Creditsfont should now be marked as additive, fixes to some melee timers
in monster_alien_slave, monster_human_grunt and monster_zombie
This commit is contained in:
parent
beabae200d
commit
92f0844156
4 changed files with 5 additions and 4 deletions
|
@ -107,7 +107,7 @@ monster_alien_slave::AttackMelee(void)
|
|||
|
||||
/* functional */
|
||||
think = AttackFlail;
|
||||
nextthink = 0.25f;
|
||||
nextthink = time + 0.25f;
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
|
|
@ -161,7 +161,7 @@ monster_human_grunt::AttackMelee(void)
|
|||
|
||||
/* functional */
|
||||
think = AttackKick;
|
||||
nextthink = 0.25f;
|
||||
nextthink = time + 0.25f;
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ monster_zombie::AttackMelee(void)
|
|||
|
||||
/* functional */
|
||||
think = AttackFlail;
|
||||
nextthink = 0.25f;
|
||||
nextthink = time + 0.25f;
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
path "creditsfont?fmt=h"
|
||||
size 20
|
||||
size 20
|
||||
additive 1
|
||||
|
|
Loading…
Reference in a new issue