aboutsummaryrefslogtreecommitdiff
path: root/src/tasks
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-12-14 00:20:55 +0000
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-12-14 00:20:55 +0000
commit2d6bb50ce8c979e543f0d2831b3db9d8644be477 (patch)
treeaafb389ad709b4d2da46ea2871fbddf4d714dcf6 /src/tasks
parent8a27a3428dc3946a538f6471e480a34e41ceb7e6 (diff)
downloadtanzanite-2d6bb50ce8c979e543f0d2831b3db9d8644be477.tar.gz
tanzanite-2d6bb50ce8c979e543f0d2831b3db9d8644be477.tar.bz2
tanzanite-2d6bb50ce8c979e543f0d2831b3db9d8644be477.zip
Automatically format code
Diffstat (limited to 'src/tasks')
-rw-r--r--src/tasks/cpuUsage.ts2
-rw-r--r--src/tasks/removeExpiredPunishements.ts2
-rw-r--r--src/tasks/updateCache.ts2
-rw-r--r--src/tasks/updateStats.ts2
-rw-r--r--src/tasks/updateSuperUsers.ts2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/tasks/cpuUsage.ts b/src/tasks/cpuUsage.ts
index 882d660..9985e48 100644
--- a/src/tasks/cpuUsage.ts
+++ b/src/tasks/cpuUsage.ts
@@ -8,7 +8,7 @@ export default class CpuUsageTask extends BushTask {
runOnStart: true
});
}
-
+
public override async exec() {
const cpu = await osu.cpu.usage(client.stats.cpu === undefined ? 100 : 60_000);
client.stats.cpu = cpu;
diff --git a/src/tasks/removeExpiredPunishements.ts b/src/tasks/removeExpiredPunishements.ts
index 8197cc5..2b89f3d 100644
--- a/src/tasks/removeExpiredPunishements.ts
+++ b/src/tasks/removeExpiredPunishements.ts
@@ -8,7 +8,7 @@ export default class RemoveExpiredPunishmentsTask extends BushTask {
runOnStart: true
});
}
-
+
public override async exec() {
const expiredEntries = await ActivePunishment.findAll({
where: {
diff --git a/src/tasks/updateCache.ts b/src/tasks/updateCache.ts
index 8bf92d5..8f9cc5d 100644
--- a/src/tasks/updateCache.ts
+++ b/src/tasks/updateCache.ts
@@ -9,7 +9,7 @@ export default class UpdateCacheTask extends BushTask {
runOnStart: false // done in preinit task
});
}
-
+
public override async exec() {
await UpdateCacheTask.updateGlobalCache(client);
await UpdateCacheTask.#updateGuildCache(client);
diff --git a/src/tasks/updateStats.ts b/src/tasks/updateStats.ts
index 8813343..54c8748 100644
--- a/src/tasks/updateStats.ts
+++ b/src/tasks/updateStats.ts
@@ -8,7 +8,7 @@ export default class UpdateStatsTask extends BushTask {
runOnStart: true
});
}
-
+
public override async exec() {
const row =
(await Stat.findByPk(client.config.environment)) ?? (await Stat.create({ environment: client.config.environment }));
diff --git a/src/tasks/updateSuperUsers.ts b/src/tasks/updateSuperUsers.ts
index ba3e90c..c0937dd 100644
--- a/src/tasks/updateSuperUsers.ts
+++ b/src/tasks/updateSuperUsers.ts
@@ -8,7 +8,7 @@ export default class UpdateSuperUsersTask extends BushTask {
runOnStart: true
});
}
-
+
public override async exec() {
const superUsers = client.guilds.cache
.get(client.config.supportGuild.id)