Compare commits

..

No commits in common. "205bdc02722ad7c8da5b2ac255b8f822d03b99da" and "7977f0129af857ecb972d4fb4115c3763afb14ac" have entirely different histories.

2 changed files with 11 additions and 19 deletions

View file

@ -37,13 +37,7 @@ do
if darkrp.canMakeMoneyRequest(target) then if darkrp.canMakeMoneyRequest(target) then
local money = owner():getMoney() local money = owner():getMoney()
local requestStr = "" target:requestMoney((#args[3] > 0 and args[3] or ""), amount,
if #args >= 3 then
for i = 3, #args do
requestStr = requestStr.." "..args[i]
end
end
target:requestMoney(requestStr, amount,
function() --Success function() --Success
if owner():getMoney() + amount >= money then if owner():getMoney() + amount >= money then
core:log(log.INFO, "Successfully received "..darkrp.formatMoney(amount).." from "..target:getName().."!") core:log(log.INFO, "Successfully received "..darkrp.formatMoney(amount).." from "..target:getName().."!")

View file

@ -349,9 +349,7 @@ end
-- Get's a player's entity by searching for it via an inputted string -- Get's a player's entity by searching for it via an inputted string
function core:get_entity(ply) function core:get_entity(ply)
if ply == nil then if type(ply) == "Player" then
return nil
elseif type(ply) == "Player" then
return ply return ply
elseif ply == "^" then elseif ply == "^" then
return owner() return owner()