Thank you, patnad, for a patch that removes the "Subdivision of" text

when dividing land.
Fixes Mantis #3154
This commit is contained in:
Melanie Thielker
2009-02-14 12:24:26 +00:00
parent 63a1cab7fe
commit d31bf02eaf

View File

@@ -740,7 +740,7 @@ namespace OpenSim.Region.CoreModules.World.Land
//Lets create a new land object with bitmap activated at that point (keeping the old land objects info)
ILandObject newLand = startLandObject.Copy();
newLand.landData.Name = "Subdivision of " + newLand.landData.Name;
newLand.landData.Name = newLand.landData.Name;
newLand.landData.GlobalID = UUID.Random();
newLand.setLandBitmap(newLand.getSquareLandBitmap(start_x, start_y, end_x, end_y));