git-svn-id: https://svn.eduke32.com/eduke32@312 1a8010ca-5511-0410-912e-c29ae57300e0

This commit is contained in:
terminx 2006-10-15 18:59:45 +00:00
parent 6b635120d4
commit 047524688f
11 changed files with 446 additions and 446 deletions

View File

@ -30,7 +30,7 @@ source:
find . -name "*.mine" -exec rm -rf '{}' ';';
find . -name "*.c.r*" -exec rm -rf '{}' ';';
find . -name "*.h.r*" -exec rm -rf '{}' ';';
cp -R src rsrc include devcpp watcomhax testgame $(sourcedir)
cp -R src rsrc include devcpp testgame $(sourcedir)
find $(sourcedir) | grep -i svn | xargs rm -rf
rm -f $(sourcedir)/src/tmp/*
touch $(sourcedir)/src/tmp/keep.me

View File

@ -32,7 +32,7 @@ source:
find . -name "*.mine" -exec rm -rf '{}' ';';
find . -name "*.c.r*" -exec rm -rf '{}' ';';
find . -name "*.h.r*" -exec rm -rf '{}' ';';
cp -R source rsrc watcomhax $(sourcedir)
cp -R source rsrc $(sourcedir)
find $(sourcedir) | grep -i svn | xargs rm -rf
kzip -r $(sourcedir).zip $(sourcedir)

View File

@ -2643,7 +2643,7 @@ void moveweapons(void)
hittype[j].owner = s->owner;
hittype[j].picnum = s->picnum;
hittype[j].extra = thisprojectile[i].extra;
hittype[j].extra += thisprojectile[i].extra;
if (thisprojectile[i].spawns >= 0 )
{

View File

@ -3761,11 +3761,11 @@ char parse(void)
case CON_AI:
insptr++;
g_t[5] = *insptr++;
g_t[5] = *insptr++; // Ai
g_t[4] = *(long *)(g_t[5]); // Action
g_t[1] = *(long *)(g_t[5]+4); // move
g_sp->hitag = *(long *)(g_t[5]+8); // Ai
g_t[0] = g_t[2] = g_t[3] = 0;
g_sp->hitag = *(long *)(g_t[5]+8); // move flags
g_t[0] = g_t[2] = g_t[3] = 0; // count, actioncount... g_t[3] = ???
if(g_sp->hitag&random_angle)
g_sp->ang = TRAND&2047;
break;