bug fixes

This commit is contained in:
teverse 2019-05-30 15:41:56 +01:00
parent f981ca3e92
commit 268f9da0fe
1 changed files with 15 additions and 1 deletions
core/server

View File

@ -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