mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 22:05:36 +08:00
Fix a condition check
This commit is contained in:
@@ -1880,7 +1880,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;
|
||||
|
||||
Reference in New Issue
Block a user