Update flicker.lua

This commit is contained in:
LDDestroier 2020-01-11 23:27:48 -05:00 committed by GitHub
parent e432841fcb
commit a9e8060cb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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()