Skip to content

Commit fc30632

Browse files
committed
Fix default argument of gc
1 parent db75258 commit fc30632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/misc/gachacalc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Example with 70 pulls, 10 pity and guaranteed for 5 star weapon banner: \`${conf
143143
const gacha = options.getString("gacha") ?? "char"
144144
const pulls = options.getInteger("pulls", true)
145145
const pity = options.getInteger("pity") ?? 0
146-
const current = options.getInteger("current") ?? 0
146+
const current = options.getInteger("current") ?? -1
147147
const guaranteedPity = options.getInteger("guaranteedPity") ?? 0
148148
const guaranteed = options.getBoolean("guaranteed") ?? false
149149

0 commit comments

Comments
 (0)