From 22fadafe08bea99b93d6b948451281b2f8c7914b Mon Sep 17 00:00:00 2001 From: 17146 <1714673995@qq.com> Date: Mon, 16 Jun 2025 01:01:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E9=85=8D=E7=BD=AE=E9=A1=B9?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/atsuishio/superbwarfare/config/server/MiscConfig.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/com/atsuishio/superbwarfare/config/server/MiscConfig.java b/src/main/java/com/atsuishio/superbwarfare/config/server/MiscConfig.java index db48cf103..f6ad4baaa 100644 --- a/src/main/java/com/atsuishio/superbwarfare/config/server/MiscConfig.java +++ b/src/main/java/com/atsuishio/superbwarfare/config/server/MiscConfig.java @@ -14,8 +14,6 @@ public class MiscConfig { public static ModConfigSpec.IntValue CHARGING_STATION_GENERATE_SPEED; public static ModConfigSpec.IntValue CHARGING_STATION_TRANSFER_SPEED; public static ModConfigSpec.IntValue CHARGING_STATION_CHARGE_RADIUS; - - // TODO 这玩意是个啥 public static ModConfigSpec.IntValue CHARGING_STATION_DEFAULT_FUEL_TIME; public static void init(ModConfigSpec.Builder builder) { @@ -51,7 +49,7 @@ public class MiscConfig { builder.comment("The charging radius of the charging station"); CHARGING_STATION_CHARGE_RADIUS = builder.defineInRange("charging_station_charge_radius", 8, 0, 128); - builder.comment("What is this?"); + builder.comment("The default fuel time of the charging station"); CHARGING_STATION_DEFAULT_FUEL_TIME = builder.defineInRange("charging_station_default_fuel_time", 1600, 1, Integer.MAX_VALUE); builder.pop();