mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-21 19:34:42 +01:00
fix achievement proto (#507)
* fix achievement proto TakeAchievementRewardReq tells client the achievements achieved or not and it's progress. * add import
This commit is contained in:
17
proto/TakeAchievementRewardReq.proto
Normal file
17
proto/TakeAchievementRewardReq.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "AchievementInfo.proto";
|
||||
message TakeAchievementRewardReq {
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
NONE = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
IS_ALLOW_CLIENT = 1;
|
||||
CMD_ID = 2677;
|
||||
}
|
||||
|
||||
repeated AchievementInfo a_list = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user