-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutilsdb.js
24 lines (24 loc) · 842 Bytes
/
utilsdb.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
db.utils.insert({
'type': 'category',
'list': [{
'title': 'BreakMC Knowledgebase',
'description': 'View the FAQ, important threads, and other valuable information here!',
'icon': 'knowledegebase_icon.png'
}, {
'title': 'AdvancedPvP Central',
'description': 'Come discuss everything about your favorite soup server!',
'icon': 'apvp_icon.png'
}, {
'title': 'MCHCF Central',
'description': "What's Hardcore Factions without a Hardcore Forums?",
'icon': 'mchcf_icon.png'
}, {
'title': 'Sugggestions',
'description': 'Your feedback is incredibly valuable to the community, thank you for sharing!',
'icon': 'suggestions_icon.png'
}, {
'title': 'Random',
'description': 'BEWARE: RANDOMNESS AWAITS',
'icon': 'random_icon.png'
}]
})