🧹 Last bit of cleaning up before pushing
This commit is contained in:
@ -6,7 +6,7 @@ class Money():
|
||||
|
||||
# Returns the account balance for a user
|
||||
def checkBalance(self, user):
|
||||
self.bot.log("checking "+user+"'s account balance", level = 10)
|
||||
self.bot.log("checking "+user+"'s account balance")
|
||||
|
||||
userData = self.database["users"].find_one({"_id":user})
|
||||
|
||||
@ -16,7 +16,7 @@ class Money():
|
||||
|
||||
# Adds money to the account of a user
|
||||
def addMoney(self,user,amount):
|
||||
self.bot.log("adding "+str(amount)+" to "+user+"'s account", level = 10)
|
||||
self.bot.log("adding "+str(amount)+" to "+user+"'s account")
|
||||
|
||||
userData = self.database["users"].find_one({"_id":user})
|
||||
|
||||
|
Reference in New Issue
Block a user