From a96fa779ea170bd9f67f6ca58e3a62531258731b Mon Sep 17 00:00:00 2001
From: Innovation Inc <connorrox60@gmail.com>
Date: Wed, 6 Jan 2021 02:52:48 -0600
Subject: [PATCH] Update drone.lua

---
 drone.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drone.lua b/drone.lua
index b942854..566bb9d 100644
--- a/drone.lua
+++ b/drone.lua
@@ -7,7 +7,7 @@ local d = component.proxy(component.list("drone")())
 local t = component.proxy(component.list("tunnel")())
 local eeprom = part "eeprom"
 local interweb = part "internet"
-local fwaddress = "https://raw.githubusercontent.com/osmarks/oc-drone/master/drone.lua"
+local fwaddress = "https://raw.githubusercontent.com/DremOSDeveloperTeam/opencomputers-drone/master/drone.lua"
 
 while true do
   local evt,_,sender,_,_,name,cmd,a,b,c = computer.pullSignal()
@@ -15,7 +15,7 @@ while true do
     if cmd == "gfw" then -- Get Firmware Version
       t.send(fwv)
     end
-    if cmd == "ufw" then -- Update Firmware
+    if cmd == "ufw" then -- Update Firmware. Essentially stolen from https://github.com/osmarks/oc-drone/
       local web_request = interweb.request(fwaddress)
       t.send("Updating firmware...")
       t.send("  Connecting...")