diff --git a/plugins/shorthands.js b/plugins/shorthands.js index e2ef88261..693e1907e 100644 --- a/plugins/shorthands.js +++ b/plugins/shorthands.js @@ -109,7 +109,13 @@ export default defineNuxtPlugin((nuxtApp) => { } else if (isMod && isPlugin) { return 'mod and plugin' } else if (isMod && isDataPack) { - return 'mod and datapack' + return 'mod and data pack' + } else if (isPlugin && isDataPack) { + return 'plugin and data pack' + } else if (isDataPack) { + return 'data pack' + } else if (isPlugin) { + return 'plugin' } }