mirror of https://github.com/teverse/teverse
bug fixes
This commit is contained in:
parent
f981ca3e92
commit
268f9da0fe
core/server
|
@ -6,4 +6,18 @@
|
|||
--]]
|
||||
|
||||
local chat = require("tevgit:core/server/chat.lua")
|
||||
local char = require("tevgit:core/server/characterController.lua")
|
||||
local char = require("tevgit:core/server/characterController.lua")
|
||||
|
||||
-- Purely for testing purposes only:
|
||||
while wait(1) do
|
||||
local blocks = {}
|
||||
for i = 1,15 do
|
||||
local block = engine.construct("block", workspace, {size = vector3(1,2,1), position = vector3(0,15,0), static=false, colour = colour(0,0,1)})
|
||||
table.insert(blocks, block)
|
||||
wait()
|
||||
end
|
||||
wait(5)
|
||||
for _,v in pairs(blocks) do
|
||||
v:destroy()
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue