From d9e75bd46c40f81ce91c516adf5ccc59361122a6 Mon Sep 17 00:00:00 2001 From: Kenny Shields Date: Wed, 11 Dec 2013 08:50:18 -0500 Subject: [PATCH] Fixed #94 --- skins.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/skins.lua b/skins.lua index f0e0134..444da64 100644 --- a/skins.lua +++ b/skins.lua @@ -92,7 +92,9 @@ function loveframes.skins.Register(skin) local extension = v.extension local fullpath = v.fullpath local key = filename .. "." .. extension - loveframes.skins.available[name].images[key] = love.graphics.newImage(fullpath) + if extension ~= "db" then + loveframes.skins.available[name].images[key] = love.graphics.newImage(fullpath) + end end end