Plugin
NoOnboardingDelay
Skips the slow and annoying onboarding delay
1
import { Devs } from "@utils/constants";2
import definePlugin from "@utils/types";3
4
export default definePlugin({5
name: "NoOnboardingDelay",6
description: "Skips the slow and annoying onboarding delay",7
tags: ["Utility", "Servers"],8
authors: [Devs.nekohaxx],9
patches: [10
{11
find: "#{intl::ONBOARDING_COVER_WELCOME_SUBTITLE}",12
replacement: {13
match: "3e3",14
replace: "0"15
},16
},17
],18
});19