fix syntax errors

This commit is contained in:
Starbeamrainbowlabs 2023-09-23 21:56:56 +01:00
parent 621ca53d28
commit f02b1d0b33
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2

@ -14,14 +14,14 @@ StagedVoxelRegion.__index = StagedVoxelRegion
StagedVoxelRegion.__name = "StagedVoxelRegion" -- A hack to allow identification in wea.inspect StagedVoxelRegion.__name = "StagedVoxelRegion" -- A hack to allow identification in wea.inspect
local function make_instance(tbl) { local function make_instance(tbl)
local result = tbl local result = tbl
if result == nil then if result == nil then
result = {} result = {}
end end
setmetatable(result, StagedVoxelRegion) setmetatable(result, StagedVoxelRegion)
return result return result
} end
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -67,8 +67,8 @@ function StagedVoxelRegion.NewFromRaw(pos1, pos2, data, param2)
return make_instance({ return make_instance({
name = "untitled", name = "untitled",
description = "", description = "",
pos1 = pos1:clone() pos1 = pos1:clone(),
pos2 = pos2:clone() pos2 = pos2:clone(),
tables = { tables = {
data = data, data = data,
param2 = param2 param2 = param2