Remove redundant config variable again

This commit is contained in:
Hri7566 2024-08-03 06:56:45 -04:00
parent ee2d6c4dde
commit 1abaea06fa
2 changed files with 0 additions and 3 deletions

View File

@ -26,4 +26,3 @@ lobbyBackdoor: lolwutsecretlobbybackdoor
fullChannel: test/awkward fullChannel: test/awkward
sendLimit: false sendLimit: false
chownOnRejoin: true chownOnRejoin: true
sendTags: false

View File

@ -9,7 +9,6 @@ interface ChannelConfig {
lobbyBackdoor: string; lobbyBackdoor: string;
fullChannel: string; fullChannel: string;
sendLimit: boolean; sendLimit: boolean;
sendTags: boolean;
chownOnRejoin: boolean; chownOnRejoin: boolean;
} }
@ -35,6 +34,5 @@ export const config = loadConfig<ChannelConfig>("config/channels.yml", {
lobbyBackdoor: "lolwutsecretlobbybackdoor", lobbyBackdoor: "lolwutsecretlobbybackdoor",
fullChannel: "test/awkward", fullChannel: "test/awkward",
sendLimit: false, sendLimit: false,
sendTags: false,
chownOnRejoin: true chownOnRejoin: true
}); });