Added client to Zone.Get.Initial.Entity.Positions

Added type field to Zone.Get.Initial.Entity.Positions
Added method Zone.Move.Entity, currently in test mode
Made modifications to explode function in web_interface_utils.h
This commit is contained in:
Akkadius
2014-08-07 20:13:37 -05:00
parent c6d8b7e337
commit 34913c2046
8 changed files with 98 additions and 9 deletions
+2 -1
View File
@@ -14,7 +14,8 @@ void register_authorized_methods()
authorized_methods["World.GetZoneDetails"] = std::make_pair(10, handle_method_world);
authorized_methods["Zone.Subscribe"] = std::make_pair(10, handle_method_zone);
authorized_methods["Zone.Unsubscribe"] = std::make_pair(10, handle_method_zone);
authorized_methods["Zone.GetInitialEntityPositions"] = std::make_pair(10, handle_method_zone);
authorized_methods["Zone.Get.Initial.Entity.Positions"] = std::make_pair(10, handle_method_zone);
authorized_methods["Zone.Move.Entity"] = std::make_pair(10, handle_method_zone);
}
void register_unauthorized_methods()