1
0
mirror of https://github.com/LDDestroier/CC/ synced 2025-08-31 01:48:00 +00:00

Update flicker.lua

This commit is contained in:
LDDestroier
2020-01-11 23:27:48 -05:00
committed by GitHub
parent e432841fcb
commit a9e8060cb7

View File

@@ -2,7 +2,7 @@ if not fs.exists("windont.lua") then
print("'windont.lua' not found! Downloading...")
local net = http.get("https://github.com/LDDestroier/CC/raw/master/windont/windont.lua")
if net then
local file = fs.open("windont.lua")
local file = fs.open("windont.lua", "w")
file.write(net.readAll())
file.close()
net.close()