mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-17 03:05:30 -04:00
removed superfluous (and potentially derping) % from package module
This commit is contained in:
parent
0884a4590d
commit
e03bede4c3
@ -27,7 +27,7 @@ function package.searchpath(name, path, sep, rep)
|
||||
checkArg(2, path, "string")
|
||||
sep = sep or '.'
|
||||
rep = rep or '/'
|
||||
sep, rep = '%' .. sep, '%' .. rep
|
||||
sep, rep = '%' .. sep, rep
|
||||
name = string.gsub(name, sep, rep)
|
||||
local errorFiles = {}
|
||||
for subPath in string.gmatch(path, "([^;]+)") do
|
||||
|
Loading…
x
Reference in New Issue
Block a user