We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbf7efd commit adb4758Copy full SHA for adb4758
src/main/kotlin/com/mairwunnx/projectessentials/core/api/v1/extensions/Extensions.kt
@@ -151,7 +151,7 @@ fun hoverEventFrom(
151
}
152
)
153
} else {
154
- HoverEvent(HoverEvent.Action.SHOW_TEXT, TranslationTextComponent(l10n, args))
+ HoverEvent(HoverEvent.Action.SHOW_TEXT, TranslationTextComponent(l10n, *args))
155
156
157
/**
@@ -174,7 +174,7 @@ fun textComponentFrom(
174
if (safeLocalization) {
175
getLocalizedString(player.language, l10n, *args)
176
177
- TranslationTextComponent(l10n, args).formattedText
+ TranslationTextComponent(l10n, *args).formattedText
178
179
180
0 commit comments