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:
Marco Cawthorne 2022-01-31 17:46:56 -08:00
parent beabae200d
commit 92f0844156
Signed by: eukara
GPG Key ID: C196CD8BA993248A
4 changed files with 5 additions and 4 deletions

View File

@ -107,7 +107,7 @@ monster_alien_slave::AttackMelee(void)
/* functional */
think = AttackFlail;
nextthink = 0.25f;
nextthink = time + 0.25f;
return (1);
}

View File

@ -161,7 +161,7 @@ monster_human_grunt::AttackMelee(void)
/* functional */
think = AttackKick;
nextthink = 0.25f;
nextthink = time + 0.25f;
return (1);
}

View File

@ -121,7 +121,7 @@ monster_zombie::AttackMelee(void)
/* functional */
think = AttackFlail;
nextthink = 0.25f;
nextthink = time + 0.25f;
return (1);
}

View File

@ -1,2 +1,3 @@
path "creditsfont?fmt=h"
size 20
size 20
additive 1