diff --git a/ormconfig.json.dev.template b/ormconfig.json.dev.template new file mode 100644 index 0000000..6c48598 --- /dev/null +++ b/ormconfig.json.dev.template @@ -0,0 +1,24 @@ +{ + "type": "mysql", + "host": "localhost", + "port": 3306, + "username": "dev", + "password": "dev", + "database": "vylbot", + "synchronize": true, + "logging": false, + "entities": [ + "dist/entity/**/*.js" + ], + "migrations": [ + "dist/migration/**/*.js" + ], + "subscribers": [ + "dist/subscriber/**/*.js" + ], + "cli": { + "entitiesDir": "dist/entity", + "migrationsDir": "dist/migration", + "subscribersDir": "dist/subscriber" + } +} \ No newline at end of file diff --git a/ormconfig.json.template b/ormconfig.json.template index 6c48598..0ada020 100644 --- a/ormconfig.json.template +++ b/ormconfig.json.template @@ -5,7 +5,7 @@ "username": "dev", "password": "dev", "database": "vylbot", - "synchronize": true, + "synchronize": false, "logging": false, "entities": [ "dist/entity/**/*.js" diff --git a/src/commands/501231711271780357/lobby.ts b/src/commands/501231711271780357/lobby.ts index 78ca89b..74ca244 100644 --- a/src/commands/501231711271780357/lobby.ts +++ b/src/commands/501231711271780357/lobby.ts @@ -108,7 +108,7 @@ export default class Lobby extends Command { private async AddLobbyConfig(context: ICommandContext) { const channel = context.message.guild!.channels.cache.find(x => x.name == context.args[2]); const role = context.message.guild!.roles.cache.find(x => x.name == context.args[3]); - const cooldown = context.args[4] || "30"; + const cooldown = Number(context.args[4]) || 30; const gameName = context.args.splice(5).join(" "); if (!channel || !role) { @@ -116,7 +116,7 @@ export default class Lobby extends Command { return; } - const entity = new eLobby(channel.id, role.id, Number.parseInt(cooldown), gameName); + const entity = new eLobby(channel.id, role.id, cooldown, gameName); await entity.Save(eLobby, entity); const embed = new PublicEmbed(context, "", "Added new lobby channel");