From 4228930ba95808bb596809ee4bfa729b74730366 Mon Sep 17 00:00:00 2001 From: MiniDay <372403923@qq.com> Date: Thu, 8 Aug 2024 07:23:58 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=94=AF=E6=8C=81=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mc/plugin/currency/command/CurrencyCreateCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/hamster3/mc/plugin/currency/command/CurrencyCreateCommand.java b/src/main/java/cn/hamster3/mc/plugin/currency/command/CurrencyCreateCommand.java index ad983d8..18a0dee 100644 --- a/src/main/java/cn/hamster3/mc/plugin/currency/command/CurrencyCreateCommand.java +++ b/src/main/java/cn/hamster3/mc/plugin/currency/command/CurrencyCreateCommand.java @@ -58,7 +58,7 @@ public class CurrencyCreateCommand extends ChildCommand { } CurrencyPlugin.async(() -> { try { - CurrencyType type = new CurrencyType(id, id); + CurrencyType type = new CurrencyType(id); CurrencyDataManager.updateCurrencyType(type, true); CurrencyMessage.CURRENCY_CREATE_SUCCESS.show(sender); } catch (SQLException e) {