Fix a condition check

avinationmerge
Melanie Thielker 2014-08-11 02:30:09 +02:00
parent 01e381fa33
commit 519df0d2a3
1 changed files with 1 additions and 1 deletions

View File

@ -1878,7 +1878,7 @@ namespace OpenSim.Region.Framework.Scenes
public void AddTextureAnimation(Primitive.TextureAnimation pTexAnim)
{
if (((int)pTexAnim.Flags & 1) == 0) // ANIM_ON
if (((int)pTexAnim.Flags & 1) != 0) // ANIM_ON
{
byte[] data = new byte[16];
int pos = 0;