Polymer: fix stupid typo that broke r2057

git-svn-id: https://svn.eduke32.com/eduke32@2063 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
plagman 2011-10-02 11:44:05 +00:00
parent 98ae1ce50a
commit 8b7af4f486

View file

@ -7855,8 +7855,8 @@ ACTOR_STATIC void G_MoveEffectors(void) //STATNUM 3
actor[i].lightptr = &prlights[actor[i].lightId]; actor[i].lightptr = &prlights[actor[i].lightId];
// Hack in case polymer_addlight tweaked the horiz value // Hack in case polymer_addlight tweaked the horiz value
if (prlights[i].horiz != SH) if (actor[i].lightptr->horiz != SH)
SH = prlights[i].horiz; SH = actor[i].lightptr->horiz;
break; break;
} }