Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DigiDuncan committed Dec 5, 2023
1 parent 9af4331 commit d633236
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions changelogs/3.8.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# SizeBot 3.7 Changelog
# SizeBot 3.8 Changelog

*For the last major version's changelog, see [SizeBot 3½ Changelog](https://github.com/sizedev/SizeBot/blob/master/changelogs/3.5.md).*

*For the last minor version's changelog, see [SizeBot 3.6 Changelog](https://github.com/sizedev/SizeBot/blob/master/changelogs/3.6.md).*
*For the last minor version's changelog, see [SizeBot 3.7 Changelog](https://github.com/sizedev/SizeBot/blob/master/changelogs/3.7.md).*

Remember, run `&help <command>` to see detailed usage for all these commands!

Expand All @@ -13,12 +13,17 @@ The good news? **SizeBot is now public!** I'll talk later about what this means,
## Additions
- Added `&invite`.
- Get a link to invite the bot to your server!
- Added `&scaled <object...>`.
- See how big an object would be scaled up to your size!
- Added `&quake [type] [@User]`.
- See how big of an earthquake you'd cause with your steps!
- Valid types are `step`, `stomp`, or `jump`.
- Valid types are `step`, `stomp`, `jump`, `breath`, `heartbeat`, and `type`.
- Added `&quakewalk <dist>`.
- See how many earthquakes you'd cause walking a distance!
- Added `&quaketype <string...>`
- See how many earthquakes you'd cause typing a sentence!
- Added `&water`.
- See how much water you'd consume on a daily basis!

- Added spaceship travel time to `&dist`. (Based on the top speed of an Origin 100i.)

## Changes
Expand All @@ -33,9 +38,11 @@ The good news? **SizeBot is now public!** I'll talk later about what this means,
- Eye Width
- Some speeds no longer show up by default in `&dist`.
- Any speed with a travel time less than 1 second. (Except walking and climbing.)
- Some lengths of time will show less presicion to clean up embeds.

## Fixes
- `&copyheight` no longer requires a factor, and defaults to 1.
- Weight no longer caps out at infinity way before height does.

## SizeAPI
It seems every update I add a giant feature no one is going to use. From scale emojis to fake users, and now: **SizeAPI!**
Expand Down
4 changes: 2 additions & 2 deletions sizebot/cogs/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,9 @@ async def tags(self, ctx):
usage = "[object] <user/size>",
category = "objects"
)
async def scaled(self, ctx, obj: DigiObject):
async def scaled(self, ctx, *, obj: DigiObject):
userdata = load_or_fake(ctx.author)
await ctx.send(f"{obj.article.capitalize()} {obj.name} scaled for {userdata.nickname} would be {obj.getStatsSentence(userdata.scale, userdata.unitsystem)}")
await ctx.send(f"{obj.article.capitalize()} {obj.name} scaled for {userdata.nickname} is {obj.getStatsSentence(userdata.scale, userdata.unitsystem)}")

async def setup(bot):
await bot.add_cog(ObjectsCog(bot))

0 comments on commit d633236

Please sign in to comment.