mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 03:06:05 +08:00
Added some Alert methods to Scene , and a console command handler. So from the console to send alerts use : alert general <message> , for a instance wide message , or use alert firstname secondname <message> to send a alert to one user. (TODO: add region wide messages).
This commit is contained in:
@@ -361,6 +361,13 @@ namespace OpenSim
|
||||
}
|
||||
break;
|
||||
|
||||
case "alert":
|
||||
for (int i = 0; i < m_localWorld.Count; i++)
|
||||
{
|
||||
((Scene)m_localWorld[i]).HandleAlertCommand(cmdparams);
|
||||
}
|
||||
break;
|
||||
|
||||
case "quit":
|
||||
case "shutdown":
|
||||
Shutdown();
|
||||
|
||||
Reference in New Issue
Block a user