From 7a3528df408cd3433b096e40225e74338a1e7757 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 19 Mar 2025 15:49:04 -0400 Subject: [PATCH] Lint collision-detection.lua --- systems/collision-detection.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/systems/collision-detection.lua b/systems/collision-detection.lua index a0442fe..97a6528 100644 --- a/systems/collision-detection.lua +++ b/systems/collision-detection.lua @@ -34,7 +34,12 @@ world:filteredSystem( and bit.band(collider.canCollideWith, e.canBeCollidedBy) ~= 0 then if intersects(e, collider) then - system.world:addEntity({ collisionBetween = { collider = collider, collidedInto = e } }) + system.world:addEntity({ + collisionBetween = { + collider = collider, + collidedInto = e + } + }) end end end