Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zyno-bot-addons

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zyno-bot-addons - npm Package Compare versions

Comparing version 1.0.17 to 1.0.18

2

package.json
{
"name": "zyno-bot-addons",
"version": "1.0.17",
"version": "1.0.18",
"description": "Create easily addons for Zyno Bot",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -18,3 +18,3 @@ class Level{

guildXP.xp = amount;
while(client.getXPForLevel(guildXP.level) < guildXP.xp){
while(client.getXPForLevel(guildXP.level, guildMember.guild.id) < guildXP.xp){
guildXP.level += 1;

@@ -24,3 +24,3 @@ }

} else if(amount < guildXP.xp) {
while(client.getXPForLevel(guildXP.level) > guildXP.xp){
while(client.getXPForLevel(guildXP.level, guildMember.guild.id) > guildXP.xp){
guildXP.level -= 1;

@@ -48,3 +48,3 @@ }

guildXP.level = amount;
guildXP.xp = client.getXPForLevel(amount);
guildXP.xp = client.getXPForLevel(amount, guildMember.guild.id);
userXP.push(guildXP);

@@ -51,0 +51,0 @@ guildIndex = userXP.indexOf(guildXP);

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc