Fix a condition check

avinationmerge
Melanie Thielker 2014-08-11 02:30:09 +02:00
parent 036017bba7
commit 0eaabef1dc
1 changed files with 1 additions and 1 deletions

View File

@ -1880,7 +1880,7 @@ namespace OpenSim.Region.Framework.Scenes
public void AddTextureAnimation(Primitive.TextureAnimation pTexAnim) 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]; byte[] data = new byte[16];
int pos = 0; int pos = 0;