Added top trainers request to enum.

This commit is contained in:
Greg Edwards 2014-07-10 22:35:59 -04:00
parent 28d22fd392
commit ce88538370

View File

@ -325,6 +325,8 @@ namespace PkmnFoundations.GlobalTerminalService
case RequestTypes4.BattleVideoSearch:
case RequestTypes4.BattleVideoWatch:
return 0x59;
case RequestTypes4.TopTrainers:
return 0x55;
default:
return 0x00;
}
@ -351,6 +353,8 @@ namespace PkmnFoundations.GlobalTerminalService
BattleVideoUpload = 0xd8,
BattleVideoSearch = 0xd9,
BattleVideoWatch = 0xda
BattleVideoWatch = 0xda,
TopTrainers = 0xf0,
}
}