📄Updated help files

This commit is contained in:
NikolajDanger
2020-07-27 18:56:09 +02:00
parent b971c0d522
commit 5c31877656
14 changed files with 29 additions and 13 deletions

View File

@ -31,10 +31,10 @@ def giveMoney(user,targetUser,amount):
if data["users"][user] >= amount:
addMoney(user,-1 * amount)
addMoney(targetUser,amount)
return "Transferred the points"
return "Transferred the GwendoBucks"
else:
logThis("They didn't have enough points")
return "You don't have that many points"
logThis("They didn't have enough GwendoBucks")
return "You don't have that many GwendoBucks"
else:
logThis("They didn't have enough points")
return "You don't have that many points"
logThis("They didn't have enough GwendoBucks")
return "You don't have that many GwendoBucks"