Remove a spammy debug I left in. Disable TP cancel button at the point
of no return.bulletsim
parent
1be67914fa
commit
e345f03895
|
@ -328,7 +328,6 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
|
||||||
|
|
||||||
// Let's create an agent there if one doesn't exist yet.
|
// Let's create an agent there if one doesn't exist yet.
|
||||||
bool logout = false;
|
bool logout = false;
|
||||||
sp.ControllingClient.SendTeleportProgress(teleportFlags | (uint)TeleportFlags.DisableCancel, "Creating agent...");
|
|
||||||
if (!CreateAgent(sp, reg, finalDestination, agentCircuit, teleportFlags, out reason, out logout))
|
if (!CreateAgent(sp, reg, finalDestination, agentCircuit, teleportFlags, out reason, out logout))
|
||||||
{
|
{
|
||||||
sp.ControllingClient.SendTeleportFailed(String.Format("Destination refused: {0}",
|
sp.ControllingClient.SendTeleportFailed(String.Format("Destination refused: {0}",
|
||||||
|
@ -396,6 +395,8 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sp.ControllingClient.SendTeleportProgress(teleportFlags | (uint)TeleportFlags.DisableCancel, "sending_dest");
|
||||||
|
|
||||||
m_log.DebugFormat(
|
m_log.DebugFormat(
|
||||||
"[ENTITY TRANSFER MODULE]: Sending new CAPS seed url {0} to client {1}", capsPath, sp.UUID);
|
"[ENTITY TRANSFER MODULE]: Sending new CAPS seed url {0} to client {1}", capsPath, sp.UUID);
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,6 @@ namespace OpenSim.Server.Handlers.Simulation
|
||||||
|
|
||||||
// Next, let's parse the verb
|
// Next, let's parse the verb
|
||||||
string method = (string)request["http-method"];
|
string method = (string)request["http-method"];
|
||||||
m_log.DebugFormat("[SIMULATION]: Got verb {0} in HTTP handler", method);
|
|
||||||
if (method.Equals("PUT"))
|
if (method.Equals("PUT"))
|
||||||
{
|
{
|
||||||
DoAgentPut(request, responsedata);
|
DoAgentPut(request, responsedata);
|
||||||
|
|
Loading…
Reference in New Issue