Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Resolved issue #110, int64 is correct #126

Merged
merged 3 commits into from
Aug 4, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;

message SetFavoritePokemonMessage {
uint64 pokemon_id = 1; // needs to be uint64, tested by Grover
int64 pokemon_id = 1; // Do not change https://github.com/AeonLucid/POGOProtos/pull/126
bool is_favorite = 2;
}