diff options
-rw-r--r-- | OpenSim/Framework/AssetBase.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/AssetBase.cs b/OpenSim/Framework/AssetBase.cs index 03b6ea8..8e7e059 100644 --- a/OpenSim/Framework/AssetBase.cs +++ b/OpenSim/Framework/AssetBase.cs | |||
@@ -62,12 +62,12 @@ namespace OpenSim.Framework | |||
62 | { | 62 | { |
63 | get | 63 | get |
64 | { | 64 | { |
65 | return | 65 | return |
66 | Type == (sbyte) AssetType.Animation || | 66 | (Type == (sbyte) AssetType.Animation || |
67 | Type == (sbyte) AssetType.Gesture || | 67 | Type == (sbyte) AssetType.Gesture || |
68 | Type == (sbyte) AssetType.ImageJPEG || | 68 | Type == (sbyte) AssetType.ImageJPEG || |
69 | Type == (sbyte) AssetType.ImageTGA || | 69 | Type == (sbyte) AssetType.ImageTGA || |
70 | Type == (sbyte) AssetType.LSLBytecode ||; | 70 | Type == (sbyte) AssetType.LSLBytecode); |
71 | } | 71 | } |
72 | } | 72 | } |
73 | 73 | ||