Skip to content

Commit

Permalink
StartGymBattleMessage.attacking_pokemon_ids to fixed64, fixed incorre…
Browse files Browse the repository at this point in the history
…ctly named FortDeployPokemon message and changed CatchPokemonMessage.NormalizedHitPosition to underscored.
  • Loading branch information
AeonLucid committed Jul 20, 2016
1 parent 4866823 commit 277e090
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ message CatchPokemonMessage {
string spawn_point_guid = 4;
bool hit_pokemon = 5;
double spin_modifier = 6;
double NormalizedHitPosition = 7;
double normalized_hit_position = 7;
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;

message FortDeployProto {
message FortDeployPokemonMessage {
string fort_id = 1;
uint64 pokemon_id = 2;
double player_latitude = 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package POGOProtos.Networking.Requests.Messages;

message StartGymBattleMessage {
string gym_id = 1;
repeated uint64 attacking_pokemon_ids = 2;
repeated fixed64 attacking_pokemon_ids = 2;
uint64 defending_pokemon_id = 3;
double player_latitude = 4;
double player_longitude = 5;
Expand Down

0 comments on commit 277e090

Please sign in to comment.