13 lines
No EOL
377 B
JavaScript
13 lines
No EOL
377 B
JavaScript
const defaultSettings = {
|
|
quoiAnswerPercentage: 100,
|
|
feurAnswerPercentage: 100,
|
|
mentionAnswerPercentage: 100,
|
|
quoicoubehAnswerPercentage: 100,
|
|
ignoredRoleId: null, // ajouter ID au besoin
|
|
forcedAnswerRoleId: null // ajouter ID au besoin
|
|
};
|
|
|
|
export function getSetting(guildId, key) {
|
|
// brancher une BDD plus tard
|
|
return defaultSettings[key] ?? null;
|
|
} |