Fixed a typo in the init.lua

Typo caused the library to crash during load due to forgetting the ".." in the getVersion function
This commit is contained in:
2017-06-14 15:11:57 -04:00
parent 65a4dfa9c9
commit 62aa9120a8
2 changed files with 8 additions and 27 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ function multi:getChildren()
return self.Mainloop
end
function multi:getVersion()
return multi.Version[1].."."..multi.Version[2].."."multi.Version[3]
return multi.Version[1].."."..multi.Version[2].."."..multi.Version[3]
end
--Processor
function multi:getError()