lcy
2026-03-12 b97ca7fc69d2cddeaf1af2d4e59ba4b413034784
Main/System/Guild/GuildManager.cs
@@ -173,7 +173,24 @@
    //珍宝阁(行商)
    public int zhenbaogeCutState = 0;
    int m_ZhenbaogeCutState = 0;
    public int zhenbaogeCutState
    {
        get
        {
            if (familyZBGActions.Count - 1 >= 50)
            {
                //砍价人数超过上限后可直接购买
                m_ZhenbaogeCutState = 1;
            }
            return m_ZhenbaogeCutState;
        }
        set
        {
            m_ZhenbaogeCutState = value;
        }
    }
    public int zhenbaogeBuyState = 0;
    public bool needCheckCutCD = false;
    public event Action UpdateZhenbaogeEvent;