aboutsummaryrefslogtreecommitdiff
path: root/src/database.ts
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-17 17:43:30 +0000
committermat <github@matdoes.dev>2022-05-17 17:43:30 +0000
commit5101e436bd2acfb6efdffe5c8c723511ab735153 (patch)
tree014d8a95693017e1e89cb254a45896422a650bbb /src/database.ts
parented72217fd73eca1de929f915056e13be9d4085f9 (diff)
downloadskyblock-api-5101e436bd2acfb6efdffe5c8c723511ab735153.tar.gz
skyblock-api-5101e436bd2acfb6efdffe5c8c723511ab735153.tar.bz2
skyblock-api-5101e436bd2acfb6efdffe5c8c723511ab735153.zip
improve auctions api
Diffstat (limited to 'src/database.ts')
-rw-r--r--src/database.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/database.ts b/src/database.ts
index 8f63d97..3aafd05 100644
--- a/src/database.ts
+++ b/src/database.ts
@@ -126,8 +126,8 @@ export interface SimpleAuctionSchema {
* since we don't need to be super exact and so it's shorter.
*/
ts: number
- /** Whether the auction was bought or simply expired. */
- success: boolean
+ /** Whether the auction was successfully bought or simply expired. */
+ s: boolean
bin: boolean
}
export interface ItemAuctionsSchema {