Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions components/Dump.vue
Original file line numberDiff line numberDiff line change
Expand Up@@ -242,6 +242,14 @@
<highlightjs class="p-0" language="yaml" :code="discord" />
</collapse-message>

<collapse-message type="is-black" v-if="discordlink">
<template v-slot:title>
Discord Link config
</template>

<highlightjs class="p-0" language="yaml" :code="discordlink" />
</collapse-message>

<collapse-message type="is-black" v-if="log">
<template v-slot:title>
Server log
Expand DownExpand Up@@ -303,6 +311,7 @@ export default {

config: null,
discord: null,
discordlink: null,
kits: null,
log: null,
spawn: null,
Expand DownExpand Up@@ -336,6 +345,8 @@ export default {
this.kits = file.content.value
} else if (file.name === "discord-config.yml") {
this.discord = file.content.value
} else if (file.name === "discord-link-config.yml") {
this.discordlink = file.content.value
} else if (file.name === "latest.log") {
this.log = file.content.value
} else if (file.name === "worth.yml") {
Expand Down