Fixed a few inconsitancy

This commit is contained in:
Cooldude2606
2018-05-20 19:04:24 +01:00
parent 7ccf1083d2
commit 28c6610a20
4 changed files with 9 additions and 12 deletions

View File

@@ -29,7 +29,7 @@ function Gui._get_data(key) return Gui_data[key] end
function Gui:_load_parts(parts)
for _,part in pairs(parts) do
verbose('Gui Extraction: '..part)
self[part] = require('/GuiParts/'..part)
self[part] = require('GuiParts/'..part)
end
end