mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Make two-way trains capable of carrying SE49 or SE50 sprites.
git-svn-id: https://svn.eduke32.com/eduke32@2614 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
475b920e8e
commit
5dd8d20e7a
1 changed files with 2 additions and 1 deletions
|
@ -6068,7 +6068,8 @@ ACTOR_STATIC void G_MoveEffectors(void) //STATNUM 3
|
|||
j = headspritesect[s->sectnum];
|
||||
while (j >= 0)
|
||||
{
|
||||
if (sprite[j].picnum != SECTOREFFECTOR && sprite[j].picnum != LOCATORS)
|
||||
if ((sprite[j].picnum != SECTOREFFECTOR || sprite[j].lotag==49 || sprite[j].lotag==50)
|
||||
&& sprite[j].picnum != LOCATORS)
|
||||
{
|
||||
if (numplayers < 2 && !g_netServer)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue