diff options
author | mingchen | 2007-06-06 03:00:59 +0000 |
---|---|---|
committer | mingchen | 2007-06-06 03:00:59 +0000 |
commit | ea798195758a6692b583930e5846c643157143be (patch) | |
tree | 50ac10b862332a622dc50c991591cc65c084d9b5 /OpenSim/OpenSim.RegionServer/world/World.PacketHandlers.cs | |
parent | Unhippos! (diff) | |
download | opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.zip opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.tar.gz opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.tar.bz2 opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.tar.xz |
Changes:
*Added support for Subdivision (use master avatar to login to try out)
*Added Parcel Border support
*Enabled user account storage, but only when a new account is created
Bug Fixes:
*Fixed crash on startup while in sandbox when "Setting up master avatar"
*Fixed most core functions in ParcelManager and Parcel that where broken
*Fixed Parcel saving to database
Known Issues:
*Dividing parcel fails in viewer (gives an error about needing 2 parcels)
Diffstat (limited to 'OpenSim/OpenSim.RegionServer/world/World.PacketHandlers.cs')
-rw-r--r-- | OpenSim/OpenSim.RegionServer/world/World.PacketHandlers.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.RegionServer/world/World.PacketHandlers.cs b/OpenSim/OpenSim.RegionServer/world/World.PacketHandlers.cs index 805251f..74a64a0 100644 --- a/OpenSim/OpenSim.RegionServer/world/World.PacketHandlers.cs +++ b/OpenSim/OpenSim.RegionServer/world/World.PacketHandlers.cs | |||
@@ -336,6 +336,7 @@ namespace OpenSim.world | |||
336 | if(!temp.Contains(currentParcel)) | 336 | if(!temp.Contains(currentParcel)) |
337 | { | 337 | { |
338 | temp.Add(currentParcel); | 338 | temp.Add(currentParcel); |
339 | currentParcel.forceUpdateParcelInfo(); | ||
339 | currentParcel.sendParcelProperties(sequence_id,snap_selection,remote_client); | 340 | currentParcel.sendParcelProperties(sequence_id,snap_selection,remote_client); |
340 | } | 341 | } |
341 | } | 342 | } |
@@ -343,6 +344,11 @@ namespace OpenSim.world | |||
343 | 344 | ||
344 | parcelManager.sendParcelOverlay(remote_client); | 345 | parcelManager.sendParcelOverlay(remote_client); |
345 | } | 346 | } |
347 | |||
348 | void ParcelDivideRequest(int west, int south, int east, int north, ClientView remote_client) | ||
349 | { | ||
350 | parcelManager.subdivide(west, south, east, north, remote_client.AgentID); | ||
351 | } | ||
346 | #endregion | 352 | #endregion |
347 | 353 | ||
348 | /* | 354 | /* |