From 3388584aa8c84eea8dcb98a34ecb556794e2fa7c Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Wed, 26 Nov 2008 08:06:14 +0000 Subject: Fix 2 of the failed tests. Cause terrain queries to return null when no terrain is found, rather than a default "0" terrain. Remove the "remove object wrong region" test. UUIDs either are unique or they're not. This test tested a bad behavior I have chosen not to duplicate. --- OpenSim/Data/MySQL/MySQLRegionData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Data/MySQL') diff --git a/OpenSim/Data/MySQL/MySQLRegionData.cs b/OpenSim/Data/MySQL/MySQLRegionData.cs index 743c0d9..a3ac38e 100644 --- a/OpenSim/Data/MySQL/MySQLRegionData.cs +++ b/OpenSim/Data/MySQL/MySQLRegionData.cs @@ -507,7 +507,7 @@ namespace OpenSim.Data.MySQL } } - return terrain; + return null; } public void RemoveLandObject(UUID globalID) -- cgit v1.1