From db8c18995f60780ebe303ab96ee71ffa76d0fbe4 Mon Sep 17 00:00:00 2001 From: Andyyy7666 <86536434+Andyyy7666@users.noreply.github.com> Date: Fri, 23 Sep 2022 20:19:37 +0200 Subject: [PATCH] fix: version checker --- ND_ATMs/source/server.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ND_ATMs/source/server.lua b/ND_ATMs/source/server.lua index f28421a..2e5885a 100644 --- a/ND_ATMs/source/server.lua +++ b/ND_ATMs/source/server.lua @@ -1,5 +1,5 @@ NDCore = exports["ND_Core"]:GetCoreObject() -NDCore.Functions.VersionChecker("ND_ATMs", GetCurrentResourceName(), "https://github.com/Andyyy7666/ND_Framework", "https://raw.githubusercontent.com/Andyyy7666/ND_Framework/main/ND_ATMs/fxmanifest.lua") +NDCore.Functions.VersionChecker("ND_ATMs", GetCurrentResourceName(), "https://github.com/ND-Framework/ND_Framework", "https://raw.githubusercontent.com/ND-Framework/ND_Framework/main/ND_ATMs/fxmanifest.lua") RegisterNetEvent("ND_ATMs:withdraw", function(amount) local player = source @@ -11,4 +11,4 @@ RegisterNetEvent("ND_ATMs:deposit", function(amount) local player = source local update = NDCore.Functions.DepositMoney(amount, player) TriggerClientEvent("ND_ATMs:update", player, update) -end) \ No newline at end of file +end)