Update index.ts
This commit is contained in:
parent
7b34763660
commit
6fb0c6db1b
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ export default {
|
||||||
logger.silly(createGuildMember);
|
logger.silly(createGuildMember);
|
||||||
|
|
||||||
const reputationType = async (reputation: number) => {
|
const reputationType = async (reputation: number) => {
|
||||||
if (reputation > 0) return `negative reputation of ${reputation}`;
|
if (reputation < 0) return `negative reputation of ${reputation}`;
|
||||||
if (reputation < 0) return `positive reputation of ${reputation}`;
|
if (reputation > 0) return `positive reputation of ${reputation}`;
|
||||||
return "neutral reputation";
|
return "neutral reputation";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue