Skip to content

Discord Economy Super v1.7.5

Latest
Compare
Choose a tag to compare
@shadowplay1 shadowplay1 released this 25 Feb 03:42
· 18 commits to main since this release
27f0762
  • Fixed JSDoc typos/mismatches.
  • Removed the ./examples directory from publishing on NPM to reduce the package size (they are still available on github)
  • Removed node-fetch from dependencies list as it's already bundled with quick-mongo-super
  • Fixed the hard crash in JSON version when trying to claim daily, work or weekly rewards.
  • Fixed the INVALID_TYPE error when getting the currencies by ID.
  • Updated the documentation - updated the FAQ, added shop examples and more explanations of the code on Examples page in the documentation + added the Configuring Economy page that explains everything about configuring the module and Custom Item Data page explaining the custom property - check them out!
  • Minor bug fixes.
  • Added an option for package.json to disable the post-install greeting logs. To disable them, you need to add this in your package.json:
"discord-economy-super": {
    "postinstall": false
}

To enable them back, you need to set the "postinstall" property of "discord-economy-super" object to true:

"discord-economy-super": {
    "postinstall": true
}

(or simply remove this object from your package.json)