Skip to content

Commit

Permalink
Fix private skin variations not showing up
Browse files Browse the repository at this point in the history
'player.playername.43.png' skins were not recognized
  • Loading branch information
SmallJoker committed Jun 10, 2024
1 parent 312780c commit 71f803e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skinlist.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local dbgprint = false and print or function() end
local function process_skin_texture(path, filename)
-- See "textures/readme.txt" for allowed formats

local prefix, sep, identifier, extension = filename:match("^(%a+)([_.])([%w_]+)%.(%a+)$")
local prefix, sep, identifier, extension = filename:match("^(%a+)([_.])([%w_.]+)%.(%a+)$")
--[[
prefix: "character" or "player"
sep: "." (new) or "_" (legacy)
Expand Down

0 comments on commit 71f803e

Please sign in to comment.