diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-31 21:29:02 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-31 21:29:02 -0500 |
commit | 9a051637d1e529f634c1becf0934b9559a6f1b90 (patch) | |
tree | 96943315565bb0227c2bb863ee584491a4900807 | |
parent | 1084f12f92aac797c9605eeb276282230056a9eb (diff) | |
download | tanzanite-9a051637d1e529f634c1becf0934b9559a6f1b90.tar.gz tanzanite-9a051637d1e529f634c1becf0934b9559a6f1b90.tar.bz2 tanzanite-9a051637d1e529f634c1becf0934b9559a6f1b90.zip |
make cape command explain you already need the points
-rw-r--r-- | src/commands/moulberry-bush/capes.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commands/moulberry-bush/capes.ts b/src/commands/moulberry-bush/capes.ts index 8c080e3..0b2fcad 100644 --- a/src/commands/moulberry-bush/capes.ts +++ b/src/commands/moulberry-bush/capes.ts @@ -99,7 +99,9 @@ export default class CapesCommand extends BushCommand { color: util.colors.default, timestamp: new Date().toISOString(), image: { url: cape.url }, - description: cape.purchasable ? ':money_with_wings: **purchasable** :money_with_wings:' : undefined + description: cape.purchasable + ? ':money_with_wings: **purchasable** (with preexisting cape points) :money_with_wings:' + : undefined }; } |