From 04021a8fffeebb870488861b7df06388c8b49888 Mon Sep 17 00:00:00 2001 From: RTAkland Date: Thu, 26 Sep 2024 15:06:53 +0800 Subject: [PATCH] fix: fix incorrect word --- .../cn/rtast/fancybot/commands/lookup/DomainPriceCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/cn/rtast/fancybot/commands/lookup/DomainPriceCommand.kt b/src/main/kotlin/cn/rtast/fancybot/commands/lookup/DomainPriceCommand.kt index a9abbcd..26ab415 100644 --- a/src/main/kotlin/cn/rtast/fancybot/commands/lookup/DomainPriceCommand.kt +++ b/src/main/kotlin/cn/rtast/fancybot/commands/lookup/DomainPriceCommand.kt @@ -69,7 +69,7 @@ class DomainPriceCommand : BaseCommand() { g2d.color = textColor g2d.drawString("域名$domain${if (available) "可以注册" else "已被注册"}", 50, 110) g2d.drawString("${if (premium) "是" else "不是"}白金域名", 50, 140) - g2d.drawString("首年年注册价格: ${domainPrice.first}元", 50, 170) + g2d.drawString("首年注册价格: ${domainPrice.first}元", 50, 170) g2d.drawString("续费价格: ${domainPrice.second}元", 50, 200) g2d.drawString("数据来源: 腾讯云", 50, 230) g2d.dispose()