hch
2025-11-22 3e896c7ddb83106919b590d5a9eda19f8332dfd2
Main/System/Recharge/ExpSecretCollectionManager.cs
@@ -49,16 +49,13 @@
    public Redpoint redPointLLMJ = new Redpoint(MainRedDot.RightFuncRedpoint, MainRedDot.RedPoint_LLMJKey);
    void UpdateRedpoint()
    {
        redPointLLMJ.state = RedPointState.None;
        if (m_MJLV == 0) return;
        var nextConfig = LLMJConfig.Get(m_MJLV + 1);
        if (nextConfig == null) return;
        if (m_Zhanchui >= nextConfig.CostWarhammer)
        {
            redPointLLMJ.state = RedPointState.Simple;
        }
        else
        {
            redPointLLMJ.state = RedPointState.None;
        }
    }
}