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()