diff options
author | Diva Canto | 2010-01-03 11:44:57 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-03 11:44:57 -0800 |
commit | 99efa99585639c94fdb484681663ac7b6f03538e (patch) | |
tree | f74eb3e9c080e381d37b2d936ba9b0c091196f56 /OpenSim/Server/Handlers | |
parent | * Changed ISimulation interface to take a GridRegion as input arg instead of ... (diff) | |
download | opensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.zip opensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.tar.gz opensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.tar.bz2 opensim-SC_OLD-99efa99585639c94fdb484681663ac7b6f03538e.tar.xz |
Successfully logged into a grid.
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) |