There was an error while loading. Please reload this page.
1 parent 0978c06 commit f0794a9Copy full SHA for f0794a9
1 file changed
cogs/commands/packformat.py
@@ -47,7 +47,7 @@ async def packformat(
47
if format["resource_pack_version"]["minor"] != 0:
48
rpv += "." + str(format["resource_pack_version"]["minor"])
49
50
- out = f"**Datapack:** `{dpv}`\n**Resource Pack:** `{dpv}`"
+ out = f"**Datapack:** `{dpv}`\n**Resource Pack:** `{rpv}`"
51
else:
52
for format in pack_formats:
53
dpv = str(format["data_pack_version"]["major"])
@@ -61,4 +61,4 @@ async def packformat(
61
out += f"- **{format['id']}**: Datapack: `{dpv}` • Resource Pack: `{rpv}`\n"
62
63
# Send message
64
- await inter.respond(view=PackFormatView(version, out))
+ await inter.respond(view=PackFormatView(version, out))
0 commit comments