From fd554f63df7c4210517ea89a075e9a663e3939db Mon Sep 17 00:00:00 2001 From: status102 <102887808+status102@users.noreply.github.com> Date: Sun, 19 Jan 2025 21:01:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=90=A8=E5=8D=A1=E5=85=B9=E8=82=89?= =?UTF-8?q?=E9=B8=BD=E4=BD=BF=E7=94=A8=E7=A7=8D=E5=AD=90=E5=88=B7=E9=92=B1?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=AD=98=E5=82=A8=E5=88=86=E7=B1=BB=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MaaCore/Task/Roguelike/RoguelikeConfig.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MaaCore/Task/Roguelike/RoguelikeConfig.h b/src/MaaCore/Task/Roguelike/RoguelikeConfig.h index 7a6c7a66cb..c57ff672cf 100644 --- a/src/MaaCore/Task/Roguelike/RoguelikeConfig.h +++ b/src/MaaCore/Task/Roguelike/RoguelikeConfig.h @@ -125,8 +125,11 @@ public: bool get_start_with_two_ideas() const { return m_start_with_two_ideas; } + bool get_start_with_seed() const { return m_start_with_seed; } + private: bool m_start_with_two_ideas = false; // 在刷开局模式下凹开局 2 构想 + bool m_start_with_seed = false; // 种子刷钱 // ================================================================================ // 以下为局内数据,每次重置 @@ -167,8 +170,6 @@ public: int get_floor() const { return m_floor; } - bool get_start_with_seed() const { return m_start_with_seed; } - private: // ------------------ 招募 ------------------ bool m_team_full_without_rookie = false; // 编队内没有预干员 @@ -187,7 +188,6 @@ private: int m_hp = 0; // 当前生命值 int m_floor = 0; // 当前到达层数 int m_formation_upper_limit = 6; // 当前编队上限 - bool m_start_with_seed = false; // 种子刷钱 public: // ------------------ 密文板 ------------------