diff options
author | lbsa71 | 2009-04-08 20:10:43 +0000 |
---|---|---|
committer | lbsa71 | 2009-04-08 20:10:43 +0000 |
commit | ed70ef6407475573c9907e2ec154390e3850e1e0 (patch) | |
tree | ddc9adfce3374d32ce80cb023c72233953591ebe /OpenSim | |
parent | * Introduced some experimental code with regards to asset data substitution (diff) | |
download | opensim-SC_OLD-ed70ef6407475573c9907e2ec154390e3850e1e0.zip opensim-SC_OLD-ed70ef6407475573c9907e2ec154390e3850e1e0.tar.gz opensim-SC_OLD-ed70ef6407475573c9907e2ec154390e3850e1e0.tar.bz2 opensim-SC_OLD-ed70ef6407475573c9907e2ec154390e3850e1e0.tar.xz |
* butterfingers
Diffstat (limited to 'OpenSim')
-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 | ||