core.moduleapi: Use resource path for :load_resource()

This commit is contained in:
Kim Alvefur 2020-10-07 16:10:51 +02:00
parent 915cebae96
commit 58be93c184

View file

@ -500,7 +500,7 @@ function api:get_directory()
end
function api:load_resource(path, mode)
path = resolve_relative_path(self:get_directory(), path);
path = resolve_relative_path(self.resource_path or self:get_directory(), path);
return io.open(path, mode);
end