From 48da198fea1724edae79c5b9fd38683e22580654 Mon Sep 17 00:00:00 2001 From: Kubbo <390378816@qq.com> Date: Fri, 24 Jan 2025 19:02:51 +0800 Subject: [PATCH] =?UTF-8?q?refactor(guild):=20=E4=BC=98=E5=8C=96=E8=A1=8C?= =?UTF-8?q?=E4=BC=9A=E6=8D=90=E7=8C=AE=E9=85=8D=E7=BD=AE=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 重新组织 GuildDonateConfig 表结构,使配置项更加清晰 - 将 limittimes 值从 5 修改为 50,提高捐献次数限制 --- .../data/config/guild/GuildDonate.config | 23 ++++--------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/LogicServer/data/config/guild/GuildDonate.config b/LogicServer/data/config/guild/GuildDonate.config index 898d5da..b7e8c2b 100755 --- a/LogicServer/data/config/guild/GuildDonate.config +++ b/LogicServer/data/config/guild/GuildDonate.config @@ -1,19 +1,4 @@ ---AB-元宝替代.xlsx 行会捐献 -GuildDonateConfig={ -[2] = { - type = 2, - cost = 200000, - addcion = 20, - limittimes = 5, - staticcounttype = 30, - adddonate = 20, -}, -[3] = { - type = 3, - cost = 20, - addcion = 88, - limittimes = 5, - staticcounttype = 31, - adddonate = 88, -}, -} \ No newline at end of file +GuildDonateConfig = { + [2] = { staticcounttype = 30, type = 2, cost = 200000, adddonate = 20, addcion = 20, limittimes = 50 }, + [3] = { staticcounttype = 31, type = 3, cost = 20, adddonate = 88, addcion = 88, limittimes = 50 }, +}