Skip to content

Commit

Permalink
remove interface module thingy
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Oct 29, 2023
1 parent 7482789 commit b99ade9
Show file tree
Hide file tree
Showing 73 changed files with 128 additions and 121 deletions.
6 changes: 3 additions & 3 deletions .vscode/templates.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"prefix": "net",
"description": "Client-emitted event template.",
"body": [
"import { Event } from \"@interfaces\";",
"import { Event } from \"@interfaces/events\";",
"import { Client } from \"@client\"",
"\nexport default {",
"\tname: \"${1:Name}\",",
Expand All @@ -17,7 +17,7 @@
"prefix": "nact",
"description": "For non-static slash command data.",
"body": [
"import { SlashCommand, SyncSlashCommandBuilder } from \"@interfaces\";",
"import { SlashCommand, SyncSlashCommandBuilder } from \"@interfaces/commands\";",
"import { Client, ChatInputCommandInteraction, EmbedBuilder } from \"@client\";",
"import { SlashCommandBuilder } from \"discord.js\";",
"\nexport const command: SlashCommand = {",
Expand All @@ -39,7 +39,7 @@
"prefix": "nct",
"description": "Regular slash command template.",
"body": [
"import { SlashCommand } from \"@interfaces\";",
"import { SlashCommand } from \"@interfaces/commands\";",
"import { Client, ChatInputCommandInteraction, EmbedBuilder } from \"@client\";",
"import { SlashCommandBuilder } from \"discord.js\";",
"\nexport const command: SlashCommand = {",
Expand Down
20 changes: 12 additions & 8 deletions src/client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ import {
Routes,
REST,
} from "discord.js";
import { Message, EmittingCollection, Automation } from "@client";
import { Tokens, Component, SlashCommand, Event } from "@interfaces";
import { Message, Automation } from "@client";
import { Tokens } from "@interfaces/tokens";
import { Component } from "@interfaces/components";
import { SlashCommand } from "@interfaces/commands";
import { Event } from "@interfaces/events";
import { EmittingCollection } from "@helpers/emittingCollection";
import { setData, getData } from "@utility/handleJSON";
import { errorHandler } from "@functions/errorHandler";
import { err, info, success } from "@helpers/logger";
Expand Down Expand Up @@ -172,12 +176,12 @@ export class ExtendedClient extends Client {
collection.set(key, obj[key]);
});

collection.events.on("dataSet", (key: string, value: any) => {
this.saveEmittingCollection(collection, filename, relative_path);
});
collection.events.on("dataDeleted", (key: string) => {
this.saveEmittingCollection(collection, filename, relative_path);
});
collection.events.on("dataSet", (key: string, value: any) =>
this.saveEmittingCollection(collection, filename, relative_path),
);
collection.events.on("dataDeleted", (key: string) =>
this.saveEmittingCollection(collection, filename, relative_path),
);
}

/**
Expand Down
1 change: 0 additions & 1 deletion src/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ export { ExtendedEmbedBuilder as EmbedBuilder } from "./embed";
export * from "./message";
export * from "./automation";
export * from "./interaction";
export * from "./emittingCollection";
2 changes: 1 addition & 1 deletion src/commands/bot/botban.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand, SlashCommandI } from "@interfaces";
import { SlashCommand, SlashCommandI } from "@interfaces/commands";
import { EmbedBuilder, ChatInputCommandInteraction } from "@client";
import {
Collection,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/bot/embed.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { ChatInputCommandInteraction, EmbedBuilder, Message } from "@client";
import { ColorResolvable, PermissionFlagsBits, SlashCommandBuilder } from "discord.js";
import { colors } from "@utility/colors";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/bot/feedback.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import {
ActionRowBuilder,
SlashCommandBuilder,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/bot/info.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, EmbedBuilder } from "@client";
import axios from "axios";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/bot/logs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder, PermissionFlagsBits } from "discord.js";
import { ChatInputCommandInteraction } from "@client";
import { logConstructor } from "@functions/errorHandler";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/bot/ping.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { EmbedBuilder, ChatInputCommandInteraction, Message } from "@client";
import { ping } from "@json/quotes.json";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/bot/poll.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SlashCommandBuilder, EmbedField } from "discord.js";
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { Poll } from "@helpers/poll";
import { addSeconds, parseDate } from "@utility/dates";
import { ids, parseId } from "@utility/emojis";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/bot/stats.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand, SlashCommandI } from "@interfaces";
import { SlashCommand, SlashCommandI } from "@interfaces/commands";
import { SlashCommandBuilder, Collection, Guild, version as djsVersion } from "discord.js";
import { EmbedBuilder, ChatInputCommandInteraction, Message } from "@client";
import axios from "axios";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/developer/eval.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder, PermissionFlagsBits } from "discord.js";
import { Client, ChatInputCommandInteraction, EmbedBuilder } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/developer/restart.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder, PermissionFlagsBits } from "discord.js";
import { ChatInputCommandInteraction } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/developer/shutdown.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder, PermissionFlagsBits } from "discord.js";
import { ChatInputCommandInteraction, EmbedBuilder } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/developer/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
PresenceStatusData,
} from "discord.js";
import { EmbedBuilder, ChatInputCommandInteraction } from "@client";
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";

export const command: SlashCommand = {
data: new SlashCommandBuilder()
Expand Down
4 changes: 2 additions & 2 deletions src/commands/faithful/about.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { Message, EmbedBuilder, ChatInputCommandInteraction } from "@client";
import { SlashCommandBuilder, AttachmentBuilder } from "discord.js";
import axios from "axios";
import formatName from "@utility/formatName";
import { Contribution, Texture } from "@interfaces";
import { Contribution, Texture } from "@interfaces/firestorm";

export const command: SlashCommand = {
data: new SlashCommandBuilder()
Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/discords.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/faq.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message, EmbedBuilder } from "@client";
import { colors } from "@utility/colors";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/guidelines.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message, EmbedBuilder } from "@client";
import guidelineJSON from "@json/guidelines.json";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/license.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/media.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { media } from "@utility/infoembed";
import { Message, EmbedBuilder, ChatInputCommandInteraction } from "@client";
Expand Down
3 changes: 2 additions & 1 deletion src/commands/faithful/missing.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { FaithfulPack, SlashCommand, SyncSlashCommandBuilder } from "@interfaces";
import { SlashCommand, SyncSlashCommandBuilder } from "@interfaces/commands";
import { FaithfulPack } from "@interfaces/firestorm";
import { Client, ChatInputCommandInteraction, EmbedBuilder } from "@client";
import { SlashCommandBuilder, Message, AttachmentBuilder } from "discord.js";
import {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/rule.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message, EmbedBuilder } from "@client";
import { colors } from "@utility/colors";
Expand Down
3 changes: 2 additions & 1 deletion src/commands/faithful/texture.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { FaithfulPack, SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { FaithfulPack } from "@interfaces/firestorm";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";
import { getTexture } from "@functions/getTexture";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/faithful/todo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/fun/coin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message, EmbedBuilder } from "@client";
import { colors } from "@utility/colors";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/fun/order.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder, AttachmentBuilder } from "discord.js";
import { Message, ChatInputCommandInteraction } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/fun/reply.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder, PermissionFlagsBits } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/fun/say.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder, PermissionFlagsBits } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/commands/images/animate.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, EmbedBuilder, Message } from "@client";
import getImage, { imageNotFound } from "@helpers/getImage";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/images/compare.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";
import textureComparison from "@functions/textureComparison";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/images/cycle.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";
import { cycleComparison } from "@functions/cycleComparison";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/images/magnify.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";
import { magnifyToAttachment } from "@images/magnify";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/images/palette.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";
import { paletteToAttachment } from "@images/palette";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/images/tile.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { SlashCommandBuilder } from "discord.js";
import { ChatInputCommandInteraction, Message } from "@client";
import { tileToAttachment, TileShape, TileRandom } from "@images/tile";
Expand Down
2 changes: 1 addition & 1 deletion src/commands/images/tint.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SlashCommand } from "@interfaces";
import { SlashCommand } from "@interfaces/commands";
import { ChatInputCommandInteraction, Message } from "@client";
import { SlashCommandBuilder } from "discord.js";
import { mcColorsOptions, multiplyToAttachment } from "@images/multiply";
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/general/deleteInteraction.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, ButtonInteraction } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/general/deleteMessage.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { info } from "@helpers/logger";
import { Client, ButtonInteraction } from "@client";
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";

export default {
id: "deleteMessage",
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/image/compare.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, Message, ButtonInteraction, EmbedBuilder } from "@client";
import textureComparison from "@functions/textureComparison";
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/image/comparisonTemplate.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, ButtonInteraction, EmbedBuilder } from "@client";
import { magnifyToAttachment } from "@images/magnify";
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/image/magnify.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, Message, ButtonInteraction, EmbedBuilder } from "@client";
import { magnifyToAttachment } from "@images/magnify";
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/image/palette.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, Message, ButtonInteraction } from "@client";
import { paletteToAttachment } from "@images/palette";
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/image/tile.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, Message, ButtonInteraction, EmbedBuilder } from "@client";
import { tileToAttachment } from "@images/tile";
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/poll/pollDelete.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, ButtonInteraction } from "@client";

Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/poll/pollVote.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { Client, ButtonInteraction } from "@client";
import { Poll } from "@helpers/poll";

Expand Down
2 changes: 1 addition & 1 deletion src/components/menus/compareSelect.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Client, Message, StringSelectMenuInteraction } from "@client";
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { MessageEditOptions } from "discord.js";
import textureComparison from "@functions/textureComparison";
Expand Down
2 changes: 1 addition & 1 deletion src/components/menus/cycleSelect.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Client, Message, StringSelectMenuInteraction } from "@client";
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { cycleComparison } from "@functions/cycleComparison";

Expand Down
3 changes: 2 additions & 1 deletion src/components/menus/textureSelect.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Client, Message, StringSelectMenuInteraction } from "@client";
import { Component, FaithfulPack } from "@interfaces";
import { Component } from "@interfaces/components";
import { FaithfulPack } from "@interfaces/firestorm";
import { info } from "@helpers/logger";
import { getTexture } from "@functions/getTexture";
import axios from "axios";
Expand Down
2 changes: 1 addition & 1 deletion src/components/modals/bugTicket.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, EmbedBuilder, ModalSubmitInteraction } from "@client";
import sendFeedback from "@functions/feedback";
Expand Down
2 changes: 1 addition & 1 deletion src/components/modals/suggestionTicket.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { info } from "@helpers/logger";
import { Client, EmbedBuilder, ModalSubmitInteraction } from "@client";
import sendFeedback from "@functions/feedback";
Expand Down
3 changes: 2 additions & 1 deletion src/events/buttonUsed.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Event, Component } from "@interfaces";
import { Component } from "@interfaces/components";
import { Event } from "@interfaces/events";
import { Client, ButtonInteraction } from "@client";
import { info } from "@helpers/logger";

Expand Down
2 changes: 1 addition & 1 deletion src/events/guildCreate.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Guild } from "discord.js";
import { EmbedBuilder } from "@client";
import { Event } from "@interfaces";
import { Event } from "@interfaces/events";
import { info } from "@helpers/logger";

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/events/interactionCreate.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Event } from "@interfaces";
import { Event } from "@interfaces/events";
import {
Client,
ChatInputCommandInteraction,
Expand Down
4 changes: 2 additions & 2 deletions src/events/messageCreate.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Event } from "@interfaces";
import { Event } from "@interfaces/events";
import { Client, Message, EmbedBuilder } from "@client";
import { Submissions } from "@interfaces";
import { Submissions } from "@interfaces/firestorm";
import { colors } from "@utility/colors";
import axios from "axios";
import * as Random from "@utility/random";
Expand Down
Loading

0 comments on commit b99ade9

Please sign in to comment.