mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-16 14:54:54 +00:00
Merge pull request #486 from Wilma456/extensionfix
Fix Bug in Paint and Edit
This commit is contained in:
commit
2a16a1df85
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user