Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Replaced return statement with continue #61

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/src/server/systems/updateTransforms.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ local function updateTransforms(world)
-- Despawn models that fall into the void
if currentCFrame.Y < -400 then
world:despawn(id)
return
continue
end

if currentCFrame ~= existingCFrame then
Expand Down