* Deleted duplicated migration that was failing anyway.

* Added an error message in initial estate owner creation that makes it clear what needs to happen.
0.7-release
Diva Canto 2010-06-14 11:50:42 -07:00
parent 53c32d8773
commit 9c9ce9e8dd
2 changed files with 2 additions and 2 deletions

View File

@ -787,8 +787,6 @@ CREATE TABLE `regionwindlight` (
PRIMARY KEY (`region_id`) PRIMARY KEY (`region_id`)
); );
ALTER TABLE estate_settings AUTO_INCREMENT = 100;
COMMIT;
:VERSION 33 #--------------------- :VERSION 33 #---------------------

View File

@ -1334,6 +1334,8 @@ namespace OpenSim.Region.Framework.Scenes
m_regInfo.EstateSettings.EstateOwner = account.PrincipalID; m_regInfo.EstateSettings.EstateOwner = account.PrincipalID;
m_regInfo.EstateSettings.Save(); m_regInfo.EstateSettings.Save();
} }
else
m_log.ErrorFormat("[SCENE]: Unable to store account. If this simulator is connected to a grid,\n you must create the estate owner account first.");
} }
else else
{ {