chrxmaticc-framework 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +9 -19
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const XPSystem = require("./XPSystem");
|
|
9
|
-
const AIWrapper = require("./AIWrapper");
|
|
10
|
-
const MusicManager = require("./MusicManager");
|
|
1
|
+
// FINALLY IT L0ADS FUCKING PLUGINS AND FUCKING CORE SHIT
|
|
2
|
+
// Chrxmaticc Framework is so tuff gng💔
|
|
3
|
+
const { ChrxClient } = require("./core/Client");
|
|
4
|
+
const Database = require("./core/Database");
|
|
5
|
+
const XPSystem = require("./core/XPSystem");
|
|
6
|
+
const AIWrapper = require("./core/AIWrapper");
|
|
7
|
+
const MusicManager = require("./core/MusicManager");
|
|
11
8
|
const {
|
|
12
9
|
parseTime,
|
|
13
10
|
formatTime,
|
|
@@ -17,7 +14,7 @@ const {
|
|
|
17
14
|
applyStartMarker,
|
|
18
15
|
startEndMarkerWatcher,
|
|
19
16
|
stopEndMarkerWatcher,
|
|
20
|
-
} = require("./songMarkers");
|
|
17
|
+
} = require("./core/songMarkers");
|
|
21
18
|
|
|
22
19
|
// ── Plugins ───────────────────────────────────────────────────────────────
|
|
23
20
|
const Economy = require("./plugins/Economy");
|
|
@@ -31,16 +28,11 @@ const Starboard = require("./plugins/Starboard");
|
|
|
31
28
|
const AutoMod = require("./plugins/AutoMod");
|
|
32
29
|
|
|
33
30
|
module.exports = {
|
|
34
|
-
// Core
|
|
35
31
|
ChrxClient,
|
|
36
|
-
|
|
37
|
-
// Modules
|
|
38
32
|
Database,
|
|
39
33
|
XPSystem,
|
|
40
34
|
AIWrapper,
|
|
41
35
|
MusicManager,
|
|
42
|
-
|
|
43
|
-
// Song marker utilities
|
|
44
36
|
parseTime,
|
|
45
37
|
formatTime,
|
|
46
38
|
setMarker,
|
|
@@ -49,8 +41,6 @@ module.exports = {
|
|
|
49
41
|
applyStartMarker,
|
|
50
42
|
startEndMarkerWatcher,
|
|
51
43
|
stopEndMarkerWatcher,
|
|
52
|
-
|
|
53
|
-
// Plugins
|
|
54
44
|
Economy,
|
|
55
45
|
Moderation,
|
|
56
46
|
Giveaways,
|
|
@@ -60,4 +50,4 @@ module.exports = {
|
|
|
60
50
|
Reminders,
|
|
61
51
|
Starboard,
|
|
62
52
|
AutoMod,
|
|
63
|
-
};
|
|
53
|
+
};
|