Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run fmt #1084

Merged
merged 1 commit into from
Jan 8, 2025
Merged

Run fmt #1084

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/transcript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,18 +246,18 @@ item:
item_lockpick_set_31:
- ${this.t('item.generic')}
- "|icon:cute| tiny tools for unlockin' things!"
- "|icon:scallywag|fortunately, me twig-like paws are perfect for this sorta work, but these are good for me crew!"
- '|icon:scallywag|fortunately, me twig-like paws are perfect for this sorta work, but these are good for me crew!'
- "|icon:cute| little helpers for gettin' into treasure chests!"
- "|icon:info| You can pick your friends, and you can pick your lock, but you can't pick your friend's lock. |icon:question| errrr... i guess you can, but please don't pick my locks!"
- "|icon:info| Take your pick!"
- "|icon:info| now YOU can master those masterlocks!"
- '|icon:info| Take your pick!'
- '|icon:info| now YOU can master those masterlocks!'
- "|icon:info| it's a good skill to learn! it really opens doors for you!"
item_dremel_4300_kit_33:
- '|icon:info| thingamajig... |icon:question|with an on button... *CLICK* |icon:freaking|speed:3.5| OH DEAR!'
- "|icon:info| it's a spinny thing... |icon:question|but I forgot what you collet"
item_raspberry_pi_5_45:
- "|icon:cute| tiny computer that can do BIG things!"
- "|icon:info| like myself, |icon:scallywag|small but strong!"
- '|icon:cute| tiny computer that can do BIG things!'
- '|icon:info| like myself, |icon:scallywag|small but strong!'
item_framework_laptop_16__52:
- icon:freaking|The dread ship Theseus!
- icon:scallywag|Swap out the parts, just like me and my peg leg!
Expand All @@ -276,4 +276,4 @@ domains:
- puginarug.com
- zombo.com
- heeeeeeeey.com
- fallingfalling.com
- fallingfalling.com
4 changes: 3 additions & 1 deletion src/app/harbor/shop/shopkeeper.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ export const ShopkeeperComponent = ({ balance, cursed }) => {
break
case 'pause':
if (arg[0]) {
await new Promise((resolve) => setTimeout(resolve, parseFloat(arg[0])))
await new Promise((resolve) =>
setTimeout(resolve, parseFloat(arg[0])),
)
} else {
await new Promise((resolve) => setTimeout(resolve, 1000))
}
Expand Down
Loading