Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ttbowen committed Nov 22, 2023
1 parent a243eba commit 0990c88
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 9 deletions.
3 changes: 1 addition & 2 deletions packages/mrwhale-gamejolt/src/commands/fun/conchshell.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Message } from "@mrwhale-io/gamejolt-client";

import { GameJoltCommand } from "../../client/command/gamejolt-command";
import { conchshell } from "@mrwhale-io/commands";
import { GameJoltCommand } from "../../client/command/gamejolt-command";

export default class extends GameJoltCommand {
constructor() {
Expand Down
1 change: 0 additions & 1 deletion packages/mrwhale-gamejolt/src/commands/fun/dadjoke.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { dadjoke } from "@mrwhale-io/commands";
import { Message } from "@mrwhale-io/gamejolt-client";

import { GameJoltCommand } from "../../client/command/gamejolt-command";

export default class extends GameJoltCommand {
Expand Down
1 change: 0 additions & 1 deletion packages/mrwhale-gamejolt/src/commands/fun/fact.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { fact } from "@mrwhale-io/commands";
import { Message } from "@mrwhale-io/gamejolt-client";

import { GameJoltCommand } from "../../client/command/gamejolt-command";

export default class extends GameJoltCommand {
Expand Down
1 change: 0 additions & 1 deletion packages/mrwhale-gamejolt/src/commands/fun/game-idea.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { gameIdea } from "@mrwhale-io/commands";
import { InfoBuilder } from "@mrwhale-io/core";
import { Message } from "@mrwhale-io/gamejolt-client";

import { GameJoltCommand } from "../../client/command/gamejolt-command";

export default class extends GameJoltCommand {
Expand Down
1 change: 0 additions & 1 deletion packages/mrwhale-gamejolt/src/commands/fun/roll.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { roll } from "@mrwhale-io/commands";
import { Message } from "@mrwhale-io/gamejolt-client";

import { GameJoltCommand } from "../../client/command/gamejolt-command";

export default class extends GameJoltCommand {
Expand Down
1 change: 0 additions & 1 deletion packages/mrwhale-gamejolt/src/commands/game/guess.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { GuessingGame } from "@mrwhale-io/core";
import { Message, Content } from "@mrwhale-io/gamejolt-client";

import { GameJoltCommand } from "../../client/command/gamejolt-command";

export default class extends GameJoltCommand {
Expand Down
1 change: 0 additions & 1 deletion packages/mrwhale-gamejolt/src/commands/game/hangman.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { TimeUtilities, HangmanGame } from "@mrwhale-io/core";
import { Message } from "@mrwhale-io/gamejolt-client";

import { GameJoltCommand } from "../../client/command/gamejolt-command";

export default class extends GameJoltCommand {
Expand Down
2 changes: 1 addition & 1 deletion packages/mrwhale-gamejolt/src/commands/useful/weather.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default class extends GameJoltCommand {
const info = new InfoBuilder()
.addField("☁️ Weather", data.weather[0].description)
.addField("🌡️ Temperature", `${data.main.temp}°C`)
.addField("💧 Humidity", data.main.humidity);
.addField("💧 Humidity", `${data.main.humidity}`);

if (data.clouds) {
info.addField("☁️ Clouds", `${data.clouds.all}% cloudiness`);
Expand Down

0 comments on commit 0990c88

Please sign in to comment.