diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 7ce95a7..6fa78e0 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -1159,8 +1159,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1159 | while (m_regInfo.EstateSettings.EstateOwner == UUID.Zero && MainConsole.Instance != null) | 1159 | while (m_regInfo.EstateSettings.EstateOwner == UUID.Zero && MainConsole.Instance != null) |
1160 | { | 1160 | { |
1161 | MainConsole.Instance.Output("The current estate has no owner set."); | 1161 | MainConsole.Instance.Output("The current estate has no owner set."); |
1162 | string first = MainConsole.Instance.CmdPrompt("Estate owner first name", "Test"); | 1162 | List<char> excluded = new List<char>(new char[1]{' '}); |
1163 | string last = MainConsole.Instance.CmdPrompt("Estate owner last name", "User"); | 1163 | string first = MainConsole.Instance.CmdPrompt("Estate owner first name", "Test", excluded); |
1164 | string last = MainConsole.Instance.CmdPrompt("Estate owner last name", "User", excluded); | ||
1164 | 1165 | ||
1165 | UserAccount account = UserAccountService.GetUserAccount(m_regInfo.ScopeID, first, last); | 1166 | UserAccount account = UserAccountService.GetUserAccount(m_regInfo.ScopeID, first, last); |
1166 | 1167 | ||