From 30c4fdcb94d697d1166fdea05c4bdee6aa608fd5 Mon Sep 17 00:00:00 2001 From: Yuuki <6851027-yukiz@users.noreply.gitlab.com> Date: Thu, 24 Aug 2023 04:16:55 +0800 Subject: [PATCH] update proto Achievement --- proto/Achievement.proto | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/proto/Achievement.proto b/proto/Achievement.proto index f96d6419..f4125d74 100644 --- a/proto/Achievement.proto +++ b/proto/Achievement.proto @@ -16,10 +16,16 @@ syntax = "proto3"; -import "Status.proto"; option java_package = "emu.grasscutter.net.proto"; // Obf: NJOHADFBICH -message Achievement { +message Achievement { + enum Status { + STATUS_INVALID = 0; + STATUS_UNFINISHED = 1; + STATUS_FINISHED = 2; + STATUS_REWARD_TAKEN = 3; + } + uint32 finish_timestamp = 15; Status status = 10; uint32 total_progress = 4;