aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandObject.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* change a few more parcel eject code pathsUbitUmarov2017-08-241-1/+1
|
* add comments to make that more clearUbitUmarov2017-07-261-0/+1
|
* do not allow setting land passes on group owned land, because currently we ↵UbitUmarov2017-07-261-1/+1
| | | | cant give money to the group
* fix land parcel group been lost on region uploadUbitUmarov2017-05-191-2/+0
|
* clear land object on deleteUbitUmarov2017-05-141-0/+12
|
* don't round to nearest intUbitUmarov2017-05-141-1/+1
|
* don't do dwell if there is no module activeUbitUmarov2017-05-141-1/+6
|
* fix some issue on parcels loading and make parcels dwell show something. ↵UbitUmarov2017-05-141-2/+38
| | | | Resolution is 2.5min aprox.
* add CanSellObject() permitions check functionsUbitUmarov2017-03-301-2/+1
|
* several changes relative to objects return and parcel prim counts: avoid ↵UbitUmarov2017-01-271-3/+5
| | | | null refs, report correct count of returned objects, make obkects counts by ownership coerent with return rules, etc
* replace calls to SOG.GetEffectivePermissions() by the new ↵UbitUmarov2017-01-221-1/+1
| | | | SOG.EffectiveOwnerPerms, some of those inline permissions checks should be reviewed and pass by permissions module
* change the initialization point of SimwideAreaUbitUmarov2017-01-211-2/+2
|
* initialize SimwideAreaUbitUmarov2017-01-211-1/+3
|
* Change improperly named isNPC to be IsNPC as a property should be uppercaseMelanie Thielker2017-01-071-1/+1
|
* Massive tab and trailing space cleanupMelanie Thielker2017-01-051-25/+25
|
* change math on GetParcelMaxPrimCount and GetSimulatorMaxPrimCount to reduce ↵UbitUmarov2016-10-111-7/+18
| | | | round errors, limit both to region max prims. consider ObjectBonus on last one also. Change a variable name in PrimLimitsModule to make it more clear
* fix region Allow damage and parcel safe flags handlingUbitUmarov2016-08-171-6/+6
|
* add a missing update to avatar damage InvulnerableUbitUmarov2016-07-241-0/+4
|
* if a NPC is owned, allow access if ownerID matchs parcel owner or it is in ↵UbitUmarov2016-06-281-1/+24
| | | | the access list. option OS_NPC_OBJECT_GROUP it still needed if access is by group (this option should also work with not owned NPC) NEEDS TESTING, may prove to be a bad solution
* Still related to mantis #7917, parcel prims info. Now sending the correct ↵Diva Canto2016-06-191-1/+2
| | | | numbers for "Simulator primitive usage" related to the parcel owner, not the entire region.
* Mantis #7917: regression on prim limits module.Diva Canto2016-06-181-18/+2
|
* fix typoUbitUmarov2015-12-151-1/+1
|
* replace GetNearestPoint... funtionsUbitUmarov2015-12-151-3/+144
|
* some changes parcels AABB math etcUbitUmarov2015-12-151-54/+45
|
* calculate land startpoint, endpoint and center estimate when it is updated, ↵UbitUmarov2015-12-141-29/+53
| | | | it not every time they are needed
* make sure land access/ban lists are active when changed by new viewersUbitUmarov2015-12-121-0/+11
|
* fix land access/ban list sending for new viewersUbitUmarov2015-12-121-2/+2
|
* Changes to LandObject/ILandObject to support importing OARs with different ↵Jak Daniels2015-11-221-16/+274
| | | | | | Region sizes to the destination region. Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
* seems to compile ( tests comented out)UbitUmarov2015-09-021-82/+2
|
* bad merge?UbitUmarov2015-09-011-16/+217
|\
| * varregion: update LandManagementModule and LandObject for variable sized ↵Robert Adams2015-03-291-77/+99
| | | | | | | | regions.
| * persist script changes to mediaURL and musicURL ( heavy thing )UbitUmarov2014-09-301-0/+2
| |
| * missing currentParcelUUID updateUbitUmarov2014-08-031-0/+1
| |
| * add some filters for NPCsUbitUmarov2014-08-021-0/+3
| |
| * changes to parcels code (still more to to)UbitUmarov2014-07-301-22/+52
| |
| * Try to plumb the other halfMelanie Thielker2014-07-291-0/+3
| |
| * change parcel overlay bytes adding LocalSound.. changed others also NEEDSUbitUmarov2014-07-291-3/+20
| | | | | | | | checking
| * Merge branch 'master' of ssh://3dhosting.de/var/git/careminsterMelanie Thielker2014-06-211-17/+10
| |\ | | | | | | | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
| | * Merge branch 'master' into careminsterMelanie2013-06-231-10/+10
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Framework/Monitoring/BaseStatsCollector.cs OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
| | * \ Merge branch 'master' into careminsterMelanie2013-05-121-7/+0
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs OpenSim/Region/Framework/Scenes/Scene.cs
| * | | | Differentiate between requests only the owner should be able to do and thoseMelanie Thielker2014-04-261-11/+11
| | | | | | | | | | | | | | | | | | | | that managers can do when setting parcel data
| * | | | minor: Remove unused System.Linq reference and use ParcelFlags.None instead ↵Justin Clark-Casey (justincc)2014-04-231-2/+1
| | | | | | | | | | | | | | | | | | | | of 0 from previous commit cb1f28
| * | | | Prevent sending Land Properties for unprivileged usersDev Random2014-04-231-5/+8
| |/ / /
| * | | Merge branch 'avination' into careminsterMelanie2013-01-061-0/+13
| |\ \ \
| | * | | check land permitions on sit target for unscripted sitsUbitUmarov2013-01-031-0/+13
| | | | |
| * | | | Merge branch 'master' into careminsterMelanie2012-11-251-5/+8
| |\ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
| * | | | Merge branch 'master' into careminsterMelanie2012-10-121-0/+1
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs OpenSim/Region/Framework/Scenes/Scene.cs
| * \ \ \ \ Merge branch 'avination' into careminsterMelanie2012-07-061-1/+1
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
| | * | | | | Remove spammy debugMelanie2012-06-291-1/+1
| | | | | | |
| * | | | | | Merge branch 'master' into careminsterMelanie2012-06-081-1/+1
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/Scene.cs OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs