From 5d6199b9dd2ce46cdbbb720873ff9168d430f29d Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Wed, 23 Apr 2025 15:45:29 +0800 Subject: [PATCH] =?UTF-8?q?playroom=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/Gameapi.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index 4bc399f2..0ff232ce 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -981,6 +981,8 @@ message DailyTask{ bool UnLock = 2; //是否解锁 0:未解锁 1:已解锁 QuestProgress Progress = 3; //任务进度 repeated ItemInfo Items = 4; //奖励 + int32 Id = 5; //任务id + int32 Index = 6; //任务索引 } message QuestProgress{ @@ -1926,12 +1928,12 @@ message ResPlayroom{ int32 Upvote = 20; // 点赞次数 int32 RoomPoint = 21; // 房间积分 repeated int32 Unlock = 22; // 解锁的房间id - map DailyTask = 23; // 每日任务 + repeated DailyTask DailyTask = 23; // 每日任务 repeated int32 DailyTaskReward = 24; // 任务大奖励 } message NotifyPlayroomTask{ - map DailyTask = 1; // 每日任务 + repeated DailyTask DailyTask = 1; // 每日任务 repeated int32 DailyTaskReward = 2; // 任务大奖励 }