1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-12-13 11:40:29 +00:00

Merge pull request #486 from Wilma456/ComputerCraft-1/extensionfix

Fix Bug in Paint and Edit
This commit is contained in:
SquidDev 2017-11-14 23:55:14 +00:00
commit 2155fce036
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ end
-- Create .lua files by default
if not fs.exists( sPath ) and not string.find( sPath, "%." ) then
local sExtension = settings.get("edit.default_extension", "" )
if sExtension ~= "" then
if sExtension ~= "" and type( sExtension ) == "string" then
sPath = sPath .. "." .. sExtension
end
end

View File

@ -47,7 +47,7 @@ end
-- Create .nfp files by default
if not fs.exists( sPath ) and not string.find( sPath, "%." ) then
local sExtension = settings.get("paint.default_extension", "" )
if sExtension ~= "" then
if sExtension ~= "" and type( sExtension ) == "string" then
sPath = sPath .. "." .. sExtension
end
end