aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Objects/BuySell (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-40/+52
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-15/+6
|
* refactor: rename SOG/SOP.GetProperties() to SendPropertiesToClient() to ↵Justin Clark-Casey (justincc)2011-09-151-2/+2
| | | | | | reflect what it actually does This also makes it consistent with some other methods that send data to the client.
* Remove pointless cluttering SOP.ParentGroup != null checks.Justin Clark-Casey (justincc)2011-09-011-4/+1
| | | | | The only times when ParentGroup might be null is during regression tests (which might not be a valid thing) and when scene objects are being constructed from the database. At all other times it's not possible for a SOP not to have a SOG parent.
* Fix direct item give permissionsMelanie2011-01-121-1/+1
|
* Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2010-11-211-0/+1
| | | | | | themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
* Reapplying the parts of the prior revert that were not derived from theMelanie2010-10-021-1/+1
| | | | original patch
* Revert "Forward-port 0.6 fix"Melanie2010-10-021-13/+1
| | | | This reverts commit 90b51dc7d67507e27c4baa529e979de19dce8de1.
* Forward-port 0.6 fixMelanie2010-09-301-1/+13
|
* Fix a minor economy issueMelanie2010-09-251-1/+4
|
* Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman2010-09-161-6/+1
| | | | MapAndArray collection
* Formatting cleanup.Jeff Ames2010-09-121-7/+7
|
* Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)2010-09-041-1/+1
| | | | | | | folder up from connectors into Scene.Inventory.cs This fixes the problem for all architectures (hg as well as local and grid) and means we don't have to dupe code between connectors. Not ideal in that it becomes non-modular, but methods in Scene.Inventory.cs should eventually be modularized anyway.
* Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)2010-08-261-1/+4
| | | | conditions in linking and unlinking
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2010-08-131-1/+1
|
* refactor: move Scene.PerformObjectBuy into BuySellModuleJustin Clark-Casey (justincc)2010-08-131-2/+167
|
* Establish new Objects/BuySellModuleJustin Clark-Casey (justincc)2010-08-131-0/+98
Move Scene.ObjectSaleInfo() to this