Fixed [ 1215480 ] Having to "exec" a particle set twice.

Now always create a stub effect when assoced.


git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1078 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-06-07 03:59:11 +00:00
parent ffe7dc485b
commit 9a9b08c0a2
1 changed files with 1 additions and 5 deletions

View File

@ -316,11 +316,7 @@ static int CheckAssosiation(char *name, int from)
{
int to, orig;
orig = to = P_FindParticleType(name);
if (to < 0)
{
return -1;
}
orig = to = P_AllocateParticleType(name);
while(to != -1)
{