diff options
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r-- | OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs index f4f3eea..ccb4c70 100644 --- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs +++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | |||
@@ -134,8 +134,12 @@ namespace OpenSim.Server.Handlers.Simulation | |||
134 | uint teleportFlags = 0; | 134 | uint teleportFlags = 0; |
135 | if (args.ContainsKey("destination_x") && args["destination_x"] != null) | 135 | if (args.ContainsKey("destination_x") && args["destination_x"] != null) |
136 | Int32.TryParse(args["destination_x"].AsString(), out x); | 136 | Int32.TryParse(args["destination_x"].AsString(), out x); |
137 | else | ||
138 | m_log.WarnFormat(" -- request didn't have destination_x"); | ||
137 | if (args.ContainsKey("destination_y") && args["destination_y"] != null) | 139 | if (args.ContainsKey("destination_y") && args["destination_y"] != null) |
138 | Int32.TryParse(args["destination_y"].AsString(), out y); | 140 | Int32.TryParse(args["destination_y"].AsString(), out y); |
141 | else | ||
142 | m_log.WarnFormat(" -- request didn't have destination_y"); | ||
139 | if (args.ContainsKey("destination_uuid") && args["destination_uuid"] != null) | 143 | if (args.ContainsKey("destination_uuid") && args["destination_uuid"] != null) |
140 | UUID.TryParse(args["destination_uuid"].AsString(), out uuid); | 144 | UUID.TryParse(args["destination_uuid"].AsString(), out uuid); |
141 | if (args.ContainsKey("destination_name") && args["destination_name"] != null) | 145 | if (args.ContainsKey("destination_name") && args["destination_name"] != null) |