aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-29 11:46:23 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-29 11:46:23 -0400
commit539f52f3cbc25c475c2047be67f4dd01e7394e63 (patch)
treeb050c66b40c30d8b0bf2e4d326ef115b36185151
parent02869547686b4658e9554712a648e94a43a11575 (diff)
downloadtanzanite-539f52f3cbc25c475c2047be67f4dd01e7394e63.tar.gz
tanzanite-539f52f3cbc25c475c2047be67f4dd01e7394e63.tar.bz2
tanzanite-539f52f3cbc25c475c2047be67f4dd01e7394e63.zip
fix ModLog because github jank part 1
-rw-r--r--src/commands/dev/eval.ts2
-rw-r--r--src/lib/models/ModLog_.ts (renamed from src/lib/models/Modlog.ts)0
-rw-r--r--src/lib/models/index.ts2
3 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/dev/eval.ts b/src/commands/dev/eval.ts
index a1c2d87..7903474 100644
--- a/src/commands/dev/eval.ts
+++ b/src/commands/dev/eval.ts
@@ -185,7 +185,7 @@ export default class EvalCommand extends BushCommand {
{ Global } = await import('../../lib/models/Global'),
{ Guild } = await import('../../lib/models/Guild'),
{ Level } = await import('../../lib/models/Level'),
- { ModLog } = await import('../../lib/models/ModLog'),
+ { ModLog } = await import('../../lib/models/ModLog_'),
{ StickyRole } = await import('../../lib/models/StickyRole');
if (code[code.lang].replace(/ /g, '').includes('9+10' || '10+9')) {
output = 21;
diff --git a/src/lib/models/Modlog.ts b/src/lib/models/ModLog_.ts
index 94c464d..94c464d 100644
--- a/src/lib/models/Modlog.ts
+++ b/src/lib/models/ModLog_.ts
diff --git a/src/lib/models/index.ts b/src/lib/models/index.ts
index 794c335..7dff336 100644
--- a/src/lib/models/index.ts
+++ b/src/lib/models/index.ts
@@ -3,7 +3,7 @@ export * from './BaseModel';
export * from './Global';
export * from './Guild';
export * from './Level';
-export * from './ModLog';
+export * from './ModLog_';
export * from './Mute';
export * from './PunishmentRole';
export * from './StickyRole';