diff options
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs index 5421b2e..de40685 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | |||
@@ -638,8 +638,9 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
638 | if (lastRecordedLo.LandBitmap[x, y]) | 638 | if (lastRecordedLo.LandBitmap[x, y]) |
639 | { | 639 | { |
640 | m_log.ErrorFormat( | 640 | m_log.ErrorFormat( |
641 | "{0}: Cannot add parcel \"{1}\", local ID {2} at tile {3},{4} because this is still occupied by parcel \"{5}\", local ID {6}.", | 641 | "{0}: Cannot add parcel \"{1}\", local ID {2} at tile {3},{4} because this is still occupied by parcel \"{5}\", local ID {6} in {7}", |
642 | LogHeader, new_land.LandData.Name, new_land.LandData.LocalID, x, y, lastRecordedLo.LandData.Name, lastRecordedLo.LandData.LocalID); | 642 | LogHeader, new_land.LandData.Name, new_land.LandData.LocalID, x, y, |
643 | lastRecordedLo.LandData.Name, lastRecordedLo.LandData.LocalID, m_scene.Name); | ||
643 | 644 | ||
644 | return null; | 645 | return null; |
645 | } | 646 | } |