From d31bf02eaf1fcb81a43abe549fab53ceb89ffa7d Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sat, 14 Feb 2009 12:24:26 +0000 Subject: Thank you, patnad, for a patch that removes the "Subdivision of" text when dividing land. Fixes Mantis #3154 --- OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs index ff57953..fe97714 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs @@ -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)); -- cgit v1.1