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

when dividing land.
Fixes Mantis #3154
0.6.3-post-fixes
Melanie Thielker 2009-02-14 12:24:26 +00:00
parent 63a1cab7fe
commit d31bf02eaf
1 changed files with 1 additions and 1 deletions

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));