mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Fixed spamming the assets table with map tiles. The tile image ID is now stored in regionsettings. Upon generation of a new tile image, the old one is deleted. Tested for SQLite and MySql standalone.
* Fixed small bug with map search where the local sim regions weren't found.
This commit is contained in:
@@ -36,10 +36,10 @@ namespace OpenSim.Framework
|
||||
[Flags]
|
||||
public enum AssetFlags : int
|
||||
{
|
||||
Normal = 0,
|
||||
Maptile = 1,
|
||||
Rewritable = 2,
|
||||
Collectable = 4
|
||||
Normal = 0, // Immutable asset
|
||||
Maptile = 1, // What it says
|
||||
Rewritable = 2, // Content can be rewritten
|
||||
Collectable = 4 // Can be GC'ed after some time
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user