Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FIyrr committed Nov 15, 2023
2 parents 1a117e9 + 8d0c778 commit 6383350
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
3 changes: 2 additions & 1 deletion cogs/commands/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ async def help(
embed = disnake.Embed(
color=disnake.Colour.orange(),
title=("**πŸš‘ `/resource`**"),
description="Shows link and short explanation to a resource helpful on your datapacking journey\nSyntax: `/resource resource:<reource>`\nAviable resources: `misode`, `mcstacker`, `taglib`, `minecraft wiki`, `cloudwolf`, `crafting (thedestruc7i0n)`, `smithed`, `minecraft tools`, `minecraftjson`",)
description="Shows link and short explanation to a resource helpful on your datapacking journey\nSyntax: `/resource resource:<reource>`\nAviable resources: `misode`, `mcstacker`, `taglib`, `minecraft wiki`, `cloudwolf`, `crafting (thedestruc7i0n)`, `smithed`, `minecraft tools`, `minecraftjson`",
)

await inter.response.send_message(embed=embed)
# Logging
Expand Down
15 changes: 7 additions & 8 deletions cogs/commands/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"crafting (thedestruc7i0n)",
"smithed",
"minecraft tools",
"minecraftjson"
"minecraftjson",
]
)

Expand Down Expand Up @@ -69,21 +69,20 @@ async def resource(
embed = disnake.Embed(
color=disnake.Color.orange(),
title=("**πŸ“– Smithed**"),
description="Great libaries, also has datapacking conventions and allows you to upload your own packs!\n\nLink: https://smithed.dev/"
)
description="Great libaries, also has datapacking conventions and allows you to upload your own packs!\n\nLink: https://smithed.dev/",
)
case "minecraft tools":
embed = disnake.Embed(
color=disnake.Color.orange(),
title=("**πŸ“– Minecraft Tools**"),
description="General minecraft tools, especially useful in datapacking because of it's tellraw generator!\n\nLink: https://minecraft.tools/"
)
description="General minecraft tools, especially useful in datapacking because of it's tellraw generator!\n\nLink: https://minecraft.tools/",
)
case "minecraftjson":
embed = disnake.Embed(
color=disnake.Color.orange(),
title=("**πŸ“– minecraftjson**"),
description="JSON generator for tellraws, titles and books!\n\nLink: https://www.minecraftjson.com/"
)

description="JSON generator for tellraws, titles and books!\n\nLink: https://www.minecraftjson.com/",
)

await inter.response.send_message(embed=embed)
# Logging
Expand Down

0 comments on commit 6383350

Please sign in to comment.