This commit is contained in:
SmallJoker 2014-07-23 19:09:43 +02:00
parent 343a08e44a
commit 29332b7cf3
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ u_skins.file_save = false
u_skins.type = { SPRITE=0, MODEL=1, ERROR=99 }
u_skins.get_type = function(texture)
if not u_skins.is_skin(texture) then
return u_skins.ERROR
return u_skins.type.ERROR
end
return u_skins.MODEL
return u_skins.type.MODEL
end
-- )