diff options
author | SmallJoker <st.rentsch@hotmail.com> | 2014-07-23 19:09:43 +0200 |
---|---|---|
committer | SmallJoker <st.rentsch@hotmail.com> | 2014-07-23 19:09:43 +0200 |
commit | 29332b7cf3d4fe588539ea2b6f596828855d4148 (patch) | |
tree | e2ee02a9185045ad5ccd4ff9a5c0e18b0ce03166 | |
parent | 343a08e44a681de20d5aad94c7d21f24c7c439f9 (diff) |
Typo?
-rw-r--r-- | u_skins/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/u_skins/init.lua b/u_skins/init.lua index 7634de7..b4b32d4 100644 --- a/u_skins/init.lua +++ b/u_skins/init.lua @@ -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 -- ) |