fix wire function arguments

This commit is contained in:
Redo
2021-05-10 19:26:38 -05:00
parent bb353118ac
commit ec2a7cc53f
2 changed files with 8 additions and 8 deletions

View File

@@ -39,10 +39,10 @@ function Wire.getobjref(self)
return self.objref
end
function Wire.getlayer()
function Wire.getlayer(self)
return self.layer
end
function Wire.getbounds(wire)
function Wire.getbounds(self)
return self.bounds
end